getCustomer method

Возвращает данные покупателя

Implementation

Future<GetCustomerResponse> getCustomer(GetCustomerRequest request) =>
    _network(
      request,
      (Map<String, dynamic> json) => GetCustomerResponse.fromJson(json),
    );