GlobNodeSegment constructor
Implementation
GlobNodeSegment(
String source, int? position, bool? isRoot, List<GlobNode>? nodes)
: super(source, position, nodes) {
if (isRoot == null) {
throw ArgumentError.notNull('isRoot');
}
_isRoot = isRoot;
}