module Roda::RodaPlugins::Flash::InstanceMethods

def flash

it from the session if it is not already loaded.
Access the flash hash for the current request, loading
def flash
  @_flash ||= FlashHash.new(session[KEY])
end