toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final campaigns = this.campaigns;
  final offering = this.offering;
  final salesChannel = this.salesChannel;
  final storeId = this.storeId;
  return {
    'campaigns': ?campaigns,
    'offering': ?offering,
    'salesChannel': ?salesChannel,
    'storeId': ?storeId,
  };
}