fiveDigitStr top-level property

String fiveDigitStr
getter/setter pair

The pattern used by the fiveDigit regular expression. The pattern matches any string that contains exactly 5 digits (0-9).

Implementation

String fiveDigitStr = r'^\d{5}$';