toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (address != null) 'address': address!,
  if (customerService != null) 'customerService': customerService!,
  if (koreanBusinessRegistrationNumber != null)
    'koreanBusinessRegistrationNumber': koreanBusinessRegistrationNumber!,
  if (name != null) 'name': name!,
  if (phone != null) 'phone': phone!,
  if (phoneVerificationState != null)
    'phoneVerificationState': phoneVerificationState!,
};