getCurrencyAvailableForToken method

Future<List<String>> getCurrencyAvailableForToken(
  1. dynamic tokenType
)

Implementation

Future<List<String>> getCurrencyAvailableForToken(tokenType) async {
  NetworkResponse response =
      await _api.getCurrencyAvailableForToken(tokenType);
  return response.data ?? [];
}