toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final brand = this.brand;
final certification = this.certification;
final countryCode = this.countryCode;
final destinationStatuses = this.destinationStatuses;
final issues = this.issues;
final mpn = this.mpn;
final name = this.name;
final productCode = this.productCode;
final productType = this.productType;
final title = this.title;
return {
'brand': ?brand,
'certification': ?certification,
'countryCode': ?countryCode,
'destinationStatuses': ?destinationStatuses,
'issues': ?issues,
'mpn': ?mpn,
'name': ?name,
'productCode': ?productCode,
'productType': ?productType,
'title': ?title,
};
}