printAllValues method
void
printAllValues()
Implementation
void printAllValues() {
SafePrint("Valores armazenados na sessão:");
for (var key in box!.keys) {
var value = box!.get(key);
SafePrint("$key: $value");
}
}