getTotalSupply method

Future<CoinSupply> getTotalSupply(
  1. String coinType
)

Implementation

Future<CoinSupply> getTotalSupply(String coinType) async {
  final result = await client.request(
      'suix_getTotalSupply',
      [coinType]
  );
  return CoinSupply.fromJson(result);
}