AbsNodeType constructor
AbsNodeType({})
Implementation
AbsNodeType({
required this.id,
required this.title,
this.isInner = true,
this.isUnavailable = false,
this.isChosen = false,
this.isExpanded = false,
this.isFavorite = false,
this.isShowedInSearching = true,
this.isBlurred = false,
}) {
if (!isInner && isChosen == null) {
throw ArgumentError("Leaf node's `isChosen` cannot contain null value.");
}
}