regex property

String? regex

Use a regular expression as a mask. When using shorthands be aware that you need to double escape or use String.raw with a string literal.

Implementation

_i2.String? get regex => _i4.getProperty(
      this,
      'regex',
    );
void regex=(String? value)

Implementation

set regex(_i2.String? value) {
  _i4.setProperty(
    this,
    'regex',
    value ?? _i6.undefined,
  );
}