isDashedIdent static method

bool isDashedIdent(
  1. String value
)

Implementation

static bool isDashedIdent(String value) {
  return _dashedIdentRegExp.hasMatch(value);
}