getById method
Implementation
Future<CustomerModel> getById({required String id}) async {
var result = await apiResource.getById(id: id);
return CustomerModel.fromMap(result);
}
Future<CustomerModel> getById({required String id}) async {
var result = await apiResource.getById(id: id);
return CustomerModel.fromMap(result);
}