restoreAll method

void restoreAll(
  1. CodeBlock block
)

Implementation

void restoreAll(CodeBlock block) {
  for (final name in stored.keys) {
    restore(block, name);
  }
}