burnBatch method

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

Implementation

Future<dynamic> burnBatch(
    String account, List<BigInt> ids, List<BigInt> values) async {
  return await _contract.send("burnBatch", [account, ids, values]);
}