Glob constructor

Glob(
  1. String pattern, {
  2. bool caseSensitive = true,
})

Creates the glob.

Parameters: pattern Pattern for this glob. caseSensitive True, if the pattern is case sensitive; otherwise false.

Implementation

Glob(this.pattern, {this.caseSensitive = true}) {
  _compile(caseSensitive);
}