isApprovedForAll method

Uint8List isApprovedForAll(
  1. String owner,
  2. String operator
)

Implementation

Uint8List isApprovedForAll(String owner, String operator) {
  return isApprovedForAllFunc.encodeCall(
      [EthereumAddress.fromHex(owner), EthereumAddress.fromHex(operator)]);
}