transfer method
Future<String>
transfer(
- EthereumAddress recipient,
- BigInt amount, {
- required Credentials credentials,
- Transaction? transaction,
The optional transaction
parameter can be used to override parameters
like the gas price, nonce and max gas. The data
and to
fields will be
set by the contract.
Implementation
Future<String> transfer(
_i1.EthereumAddress recipient,
BigInt amount, {
required _i1.Credentials credentials,
_i1.Transaction? transaction,
}) async {
final function = self.abi.functions[7];
assert(checkSignature(function, 'a9059cbb'));
final params = [
recipient,
amount,
];
return write(
credentials,
transaction,
function,
params,
);
}