toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final batchId = this.batchId;
final errors = this.errors;
final kind = this.kind;
final productStatus = this.productStatus;
return {
'batchId': ?batchId,
'errors': ?errors,
'kind': ?kind,
'productStatus': ?productStatus,
};
}