toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final countrySettings = this.countrySettings;
  final inventoryStats = this.inventoryStats;
  final linkedGbps = this.linkedGbps;
  final name = this.name;
  final storeStates = this.storeStates;
  return {
    'countrySettings': ?countrySettings,
    'inventoryStats': ?inventoryStats,
    'linkedGbps': ?linkedGbps,
    'name': ?name,
    'storeStates': ?storeStates,
  };
}