safeTransferFrom method

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

Transfers amount tokens of token type id from from to to.

Implementation

Future<TransactionResponse> safeTransferFrom(
  String from,
  String to,
  int id,
  BigInt amount,
  String data,
) =>
    contract.send('safeTransferFrom', [from, to, id, amount, data]);