transfer method

Future transfer(
  1. String to,
  2. BigInt amount
)

Implementation

Future<dynamic> transfer(String to, BigInt amount) async =>
    await _contract.send("transfer", [to, amount]);