getAssets method

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

Implementation

Future<MixResponse<List<Asset>>> getAssets() =>
    MixResponse.requestList<Asset>(
      _dio.get('/assets'),
      (json) => Asset.fromJson(json),
    );