get method

Implementation

Future<CustomersModel> get() async {
  var result = await apiResource.get();
  return CustomersModel.fromMap(result);
}