printDebugStore method

void printDebugStore({
  1. bool items = true,
  2. bool initializers = true,
})

Implementation

void printDebugStore({bool items = true, bool initializers = true}) {
  if (items) {
    printDebug('--- Items ---');
    _items.forEach((key, value) => value == this
        ? printDebug(
            '$runtimeType - $isInitialized | ${_items.length} | ${_factory.length} | $hashCode')
        : printDebug('$key - $value'));
  }

  if (initializers) {
    printDebug('--- Initializers ---');
    _factory.forEach((key, value) => printDebug('$key - $value'));
  }
}