toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final consumerPhoneNumber = this.consumerPhoneNumber;
  final customerName = this.customerName;
  final jobType = this.jobType;
  final postalCode = this.postalCode;
  return {
    'consumerPhoneNumber': ?consumerPhoneNumber,
    'customerName': ?customerName,
    'jobType': ?jobType,
    'postalCode': ?postalCode,
  };
}