getCoins method
Implementation
Future<Page<CoinData>> getCoins(
String owner, {
String coinType = '0x2::sui::SUI',
String? cursor,
int? limit,
}) {
return core.getCoins(
owner,
coinType: coinType,
cursor: cursor,
limit: limit,
);
}