toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final address = this.address;
  final customerService = this.customerService;
  final koreanBusinessRegistrationNumber =
      this.koreanBusinessRegistrationNumber;
  final phoneNumber = this.phoneNumber;
  final phoneVerificationStatus = this.phoneVerificationStatus;
  return {
    'address': ?address,
    'customerService': ?customerService,
    'koreanBusinessRegistrationNumber': ?koreanBusinessRegistrationNumber,
    'phoneNumber': ?phoneNumber,
    'phoneVerificationStatus': ?phoneVerificationStatus,
  };
}