What is RegExp?
Regular expressions are Patterns, and can as such be used to match strings or parts of strings.
Regex in Dart works much like other languages. You use the RegExp to define a matching pattern. Then use hasMatch() to test the pattern ...