getCurrencyOfCountry method

Future<CurrencyOfCountry?> getCurrencyOfCountry(
  1. dynamic params
)

Implementation

Future<CurrencyOfCountry?> getCurrencyOfCountry(params) async {
  NetworkResponse response = await _api.getCurrencyOfCountry(params);
  return response.data;
}