regex property
- @Deprecated('Not supported. Member documentation may have more information.')
getter/setter pair
The input string must match the regular expression specified here.
The regex grammar is defined here
_. Examples: * The regex \d{3}
matches the value 123 * The regex \d{3}
does not match the value
1234 * The regex \d{3}
does not match the value 123.456 ..
attention:: This field has been deprecated in favor of safe_regex
as it
is not safe for use with untrusted input in all cases.
Implementation
@core.Deprecated(
'Not supported. Member documentation may have more information.',
)
core.String? regex;