BusinessInfo constructor

BusinessInfo({
  1. PostalAddress? address,
  2. CustomerService? customerService,
  3. String? koreanBusinessRegistrationNumber,
  4. String? name,
  5. PhoneNumber? phone,
  6. String? phoneVerificationState,
})

Implementation

BusinessInfo({
  this.address,
  this.customerService,
  this.koreanBusinessRegistrationNumber,
  this.name,
  this.phone,
  this.phoneVerificationState,
});