sendToken method

Future<String> sendToken(
  1. String toAddress,
  2. String amount
)

Implementation

Future<String> sendToken(String toAddress, String amount) async {
  final txBytes = await sendTransaction(toAddress, amount);
  return txBytes;
}