AccountCustomerService constructor

AccountCustomerService({
  1. String? email,
  2. String? phoneNumber,
  3. String? url,
})

Implementation

AccountCustomerService({
  this.email,
  this.phoneNumber,
  this.url,
});