getAssets method

Future<MixinResponse<List<Asset>>> getAssets()

Implementation

Future<MixinResponse<List<Asset>>> getAssets() => MixinResponse.requestList(
      dio.get('/assets'),
      Asset.fromJson,
    );