allowance method
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]);