regExp method

RegExp regExp(
  1. String regexp, [
  2. String? options
])

Implementation

RegExp regExp(String regexp, [String? options]) {
  return RegExp(regexp, options);
}