getAssetsByPrefix method

Future<Iterable> getAssetsByPrefix(
  1. String symbol
)

Implementation

Future<Iterable> getAssetsByPrefix(String symbol) async {
  return await request(
    'blockchain.asset.get_assets_with_prefix',
    [symbol.toUpperCase()],
  );
}