printDebugStore method

void printDebugStore()

Implementation

void printDebugStore() {
  printDebug('--- Args ---');
  _args.forEach((key, value) {
    printDebug('$key: $value');
  });
  printDebug('------------');
}