balanceOf method

Future<BigInt> balanceOf(
  1. String address
)

Returns the amount of tokens owned by address

Implementation

Future<BigInt> balanceOf(String address) async =>
    contract.call<BigInt>('balanceOf', [address]);