safeBatchTransferFrom method

InvokeBuilder safeBatchTransferFrom(
  1. EvmAddr from,
  2. EvmAddr to,
  3. List<BigInt> ids,
  4. List<BigInt> amounts,
  5. Uint8List data,
)

Implementation

InvokeBuilder safeBatchTransferFrom(
  EvmAddr from,
  EvmAddr to,
  List<BigInt> ids,
  List<BigInt> amounts,
  Uint8List data,
) =>
    _invoke(_safeBatchTransferFromFunc,
        [from.bytes, to.bytes, ids, amounts, data]);