getAll method

Implementation

Future<List<PaymentMethodCompleteModel>> getAll() async {
  var result = await apiResource.getAll();
  return result.map((e) => PaymentMethodCompleteModel.fromMap(e)).toList();
}