getPaymentStatusList method

Future<List<PaymentStatus>> getPaymentStatusList(
  1. dynamic params
)

Implementation

Future<List<PaymentStatus>> getPaymentStatusList(params) async {
  NetworkResponse response = await _api.getPaymentStatusList(params);
  return response.data ?? [];
}