transfer method

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

Transfers tokens to another account.

Implementation

Future<String> transfer(String to, BigInt amount) async {
  return write('transfer', [to, amount]);
}