SearchOptions constructor

const SearchOptions({
  1. bool caseSensitive = true,
  2. bool regex = false,
  3. bool wholeWord = false,
  4. List<String> includeGlobs = const [],
  5. List<String> excludeGlobs = const [],
  6. int? maxResults,
  7. int contextLines = 0,
})

Implementation

const SearchOptions({
  this.caseSensitive = true,
  this.regex = false,
  this.wholeWord = false,
  this.includeGlobs = const [],
  this.excludeGlobs = const [],
  this.maxResults,
  this.contextLines = 0,
});