transfer method
Transfer token from msg.sender to recipient in amount. Emits Transfer events when called.
Implementation
Future<TransactionResponse> transfer(String recipient, BigInt amount) =>
contract.send('transfer', [recipient, amount.toString()]);