transfer method

Uint8List transfer(
  1. String to,
  2. String amount
)

Implementation

Uint8List transfer(String to, String amount) {
  return transferFunc
      .encodeCall([EthereumAddress.fromHex(to), BigInt.parse(amount)]);
}