isCustomIdent static method

bool isCustomIdent(
  1. String value
)

Implementation

static bool isCustomIdent(String value) {
  return _customIdentRegExp.hasMatch(value);
}