getAssetFee method

Future<MixinResponse<AssetFee>> getAssetFee(
  1. String id
)

Implementation

Future<MixinResponse<AssetFee>> getAssetFee(String id) =>
    MixinResponse.request<AssetFee>(
      dio.get('/assets/$id/fee'),
      AssetFee.fromJson,
    );