ListValueToken constructor
ListValueToken({})
Construct a new instance.
Implementation
ListValueToken({
required Map<int, int> currentSize,
required int currentDepth,
required ArrayDecodingKeyGenerator keygen,
required String currentValue,
required String currentCharacter,
required int index,
}) : super(
index: index,
depth: currentDepth,
size: currentSize,
value: "$currentValue$currentCharacter",
key: keygen.currentKey,
);