toDebugMap method

Map<String, Object?> toDebugMap()

Debug map

Implementation

Map<String, Object?> toDebugMap() {
  final map = <String, Object?>{
    'stores': {
      for (var store in stores) store.name: store.toDebugMap(noName: true),
    },
  };
  return map;
}