isIdentifier property

bool get isIdentifier

Returns true if:

Implementation

bool get isIdentifier =>
    toUpperCase() == this ||
    RegExp(Porter2StemmerConstants.rEnglishNonWordChars)
        .allMatches(this)
        .isNotEmpty;