balanceOf method

Uint8List balanceOf(
  1. String owner,
  2. int id
)

Implementation

Uint8List balanceOf(String owner, int id) {
  return balanceOfFunc
      .encodeCall([EthereumAddress.fromHex(owner), BigInt.from(id)]);
}