RegExpFlags constructor

RegExpFlags({
  1. bool dotAll = false,
  2. bool unicode = false,
  3. bool multiline = false,
  4. bool caseSensitive = false,
})

Implementation

RegExpFlags({
  this.dotAll = false,
  this.unicode = false,
  this.multiline = false,
  this.caseSensitive = false,
});