FluentRegex constructor

FluentRegex(
  1. [String? expression]
)

Implementation

FluentRegex([String? expression])
    : _expression = expression ?? '',
      _startOfLine = false,
      _endOfLine = false,
      _ignoreCase = false,
      _multiLine = true;