toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customer = this.customer;
final label = this.label;
final resourceName = this.resourceName;
return {
'customer': ?customer,
'label': ?label,
'resourceName': ?resourceName,
};
}