regExp static method

RegExp regExp(
  1. String regex,
  2. String options
)

Implementation

static RegExp regExp(String regex, String options) {
  RegExp r = RegExp(regex);
  return r;
}