getCustomer method

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

Implementation

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