isLetter static method

bool isLetter(
  1. String s
)

Returns true if s is a latter.

Implementation

static bool isLetter(String s) => _regexpIsLetter.hasMatch(s);