allowance method

Future<BigInt> allowance(
  1. String owner,
  2. String spender
)

Returns the remaining number of tokens that spender will be allowed to spend on behalf of owner through transferFrom.

This is zero by default.

Implementation

Future<BigInt> allowance(String owner, String spender) async =>
    contract.call<BigInt>('allowance', [owner, spender]);