isEndOfWord static method

bool isEndOfWord(
  1. String? nextChar
)

Implementation

static bool isEndOfWord(String? nextChar)
{
   return nextChar == null || _symbols.hasMatch(nextChar);
}