getCoins method

  1. @override
Future<PaginatedCoins> getCoins(
  1. String owner, {
  2. String? coinType,
  3. String? cursor,
  4. int? limit,
})
override

Implementation

@override
Future<PaginatedCoins> getCoins(
  String owner, {
  String? coinType,
  String? cursor,
  int? limit,
}) =>
    client.getCoins(owner, coinType: coinType, cursor: cursor, limit: limit);