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