isCodeMatch function

bool isCodeMatch(
  1. String value
)

Implementation

bool isCodeMatch(String value) {
  return RegExp(regexCode).hasMatch(value);
}