transferFrom method

Future transferFrom(
  1. String from,
  2. String to,
  3. BigInt amount
)

Implementation

Future<dynamic> transferFrom(String from, String to, BigInt amount) async =>
    await _contract.send("transferFrom", [from, to, amount]);