SequenceNode constructor

SequenceNode(
  1. int id, {
  2. required bool isUid,
})

Creates a sequence node with the given id and true in isUid if this belongs to a UID sequence.

Implementation

SequenceNode(this.id, {required this.isUid});