RegExpOpt constructor

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

Default constructor

Implementation

RegExpOpt(
    {this.caseSensitive = true,
    this.dotAll = false,
    this.multiLine = false,
    this.unicode = false});