getCurrencyTypes method

  1. @override
Future<List<AutocompleteModel>> getCurrencyTypes([
  1. String? userId,
  2. Config? config
])
override

Implementation

@override
Future<List<AutocompleteModel>> getCurrencyTypes(
    [String? userId, Config? config]) async {
  config ??= CONFIG!;
  return fetchCurrencyTypes(userId, config);
}