Dart Regex, aby mieć co najmniej jedną liczbę całkowitą

r'(^(?=.*\d))'

// For 6 to 20 use this:
 r'(^(?=.*\d).{6,20}$)'
Defeated Dotterel