getAssetExchangeRecords method

Future<Map<String, dynamic>?> getAssetExchangeRecords({
  1. String? direction,
  2. int? from,
  3. int? limit,
})

Implementation

Future<Map<String, dynamic>?> getAssetExchangeRecords(
    {String? direction, int? from, int? limit}) async {
  log.i('Get asset exchange records.');
  return await rest.getAssetExchangeRecords(
      direction: direction, from: from, limit: limit);
}