Dart Regex pour avoir au moins un entier

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

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