safeBatchTransferFrom method

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

Batched version of safeTransferFrom.

Implementation

Future<TransactionResponse> safeBatchTransferFrom(
  String from,
  String to,
  List<int> id,
  List<BigInt> amount,
  String data,
) =>
    contract.send('safeBatchTransferFrom',
        [from, to, id, amount.map((e) => e.toString()).toList(), data]);