Dart Regex, чтобы иметь хотя бы одно целое число

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

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