toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final channelCountLowerBound = this.channelCountLowerBound;
  final channelCountUpperBound = this.channelCountUpperBound;
  final inventoryCountry = this.inventoryCountry;
  final medianMonthlyInventory = this.medianMonthlyInventory;
  final sampleChannels = this.sampleChannels;
  return {
    'channelCountLowerBound': ?channelCountLowerBound,
    'channelCountUpperBound': ?channelCountUpperBound,
    'inventoryCountry': ?inventoryCountry,
    'medianMonthlyInventory': ?medianMonthlyInventory,
    'sampleChannels': ?sampleChannels,
  };
}