balanceOf method

Future<BigInt> balanceOf(
  1. String address,
  2. int id
)

Returns the amount of tokens id owned by address

Implementation

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