toJson method
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,
};
}