GlobNode constructor

GlobNode(
  1. String? source,
  2. int? position
)

Implementation

GlobNode(this.source, this.position) {
  if (source == null) {
    throw ArgumentError.notNull('source');
  }

  if (position == null) {
    throw ArgumentError.notNull('position');
  }
}