ParserOptions constructor

const ParserOptions({
  1. bool multiLine = false,
  2. bool caseSensitive = true,
  3. bool unicode = false,
  4. bool dotAll = false,
})

Creates a ParserOptions that configures how regular expressions are treated.

Implementation

const ParserOptions({
  this.multiLine = false,
  this.caseSensitive = true,
  this.unicode = false,
  this.dotAll = false,
}) : parser = null;