toJson method

Map<String, dynamic> toJson()

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