BsonRegexp constructor
BsonRegexp(})
Implementation
BsonRegexp(this.pattern,
{bool? multiLine,
bool? caseInsensitive,
bool? dotAll,
bool? extended,
String? options})
: options = createOptionsString(
options: options,
multiLine: multiLine,
caseInsensitive: caseInsensitive,
dotAll: dotAll,
extended: extended) {
bsonPattern = BsonCString(pattern, false);
bsonOptions = BsonCString(this.options, false);
}