getCustomers method
Implementation
Future<CustomerListResponse> getCustomers(
String appToken,
) async {
final response = await _authHttpClient.get(
"customer/",
appToken,
);
return CustomerListResponse.fromJson(response);
}
Future<CustomerListResponse> getCustomers(
String appToken,
) async {
final response = await _authHttpClient.get(
"customer/",
appToken,
);
return CustomerListResponse.fromJson(response);
}