ListClosingBracketToken constructor
ListClosingBracketToken({})
Construct a new instance.
Implementation
ListClosingBracketToken({
required Map<int, int> currentSize,
required int currentDepth,
required ArrayDecodingKeyGenerator keygen,
required String currentValue,
required Map<String, JsonNode> output,
required int index,
}) : super(
index: index,
depth: currentDepth - 1,
size: _size(currentSize, currentDepth),
value: _simpleValue(
currentValue: currentValue,
currentKey: keygen.currentKey,
output: output,
),
key: keygen.nextKey(output.keys.toList(), ListClosingBracketToken),
);