getAssetById method

Future<MixinResponse<Asset>> getAssetById(
  1. String id
)

Implementation

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