toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final address = this.address;
final customerService = this.customerService;
final koreanBusinessRegistrationNumber =
this.koreanBusinessRegistrationNumber;
final name = this.name;
final phone = this.phone;
final phoneVerificationState = this.phoneVerificationState;
return {
'address': ?address,
'customerService': ?customerService,
'koreanBusinessRegistrationNumber': ?koreanBusinessRegistrationNumber,
'name': ?name,
'phone': ?phone,
'phoneVerificationState': ?phoneVerificationState,
};
}