increaseAllowance method

Future increaseAllowance(
  1. String spender,
  2. BigInt addedValue
)

Implementation

Future<dynamic> increaseAllowance(String spender, BigInt addedValue) async =>
    await _contract.send("increaseAllowance", [spender, addedValue]);