toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final marketingObjective = this.marketingObjective;
  final productCode = this.productCode;
  final productName = this.productName;
  return {
    'marketingObjective': ?marketingObjective,
    'productCode': ?productCode,
    'productName': ?productName,
  };
}