AccountCustomerService.fromJson constructor

AccountCustomerService.fromJson(
  1. Map json_
)

Implementation

AccountCustomerService.fromJson(core.Map json_)
    : this(
        email: json_['email'] as core.String?,
        phoneNumber: json_['phoneNumber'] as core.String?,
        url: json_['url'] as core.String?,
      );