burnBatch method

Future<TransactionResponse> burnBatch(
  1. String address,
  2. List<int> ids,
  3. List<BigInt> values
)

Implementation

Future<TransactionResponse> burnBatch(
        String address, List<int> ids, List<BigInt> values) =>
    contract.send('burnBatch', [
      address,
      ids,
      values.map((e) => e.toString()).toList(),
    ]);