dump method

void dump()

Implementation

void dump() {
  for (final kv in vars.entries) {
    print('${kv.key} -> ${kv.value.toString()}');
  }
}