withdraw method

Future withdraw(
  1. int amount
)

Implementation

Future<dynamic> withdraw(int amount) async {
  return contract.send("withdraw", [BigInt.from(amount)]);
}