allowance method
Implementation
Future<BigInt> allowance({
required String owner,
required String spender,
}) async {
final function = abi.functions[8];
assert(function.functionSelectorHex == "dd62ed3e");
final response = await readSafe(
function: function.addValues(values: [owner, spender]),
);
return response.outputs.first.castValue<BigInt>();
}