safeBatchTransferFrom method

Future safeBatchTransferFrom(
  1. String from,
  2. String to,
  3. List<BigInt> ids,
  4. List<BigInt> amounts,
  5. String data,
)

Implementation

Future<dynamic> safeBatchTransferFrom(String from, String to,
    List<BigInt> ids, List<BigInt> amounts, String data) async {
  return await _contract
      .send("safeBatchTransferFrom", [from, to, ids, amounts, data]);
}