safeTransferFrom method

Future safeTransferFrom(
  1. String from,
  2. String to,
  3. BigInt id,
  4. BigInt amount,
  5. String data,
)

Implementation

Future<dynamic> safeTransferFrom(
    String from, String to, BigInt id, BigInt amount, String data) async {
  return await _contract
      .send("safeTransferFrom", [from, to, id, amount, data]);
}