isCharCode property
bool Function(int cc, {bool digit = false, bool lower = false, bool upper = false, bool whitespace = false})
isCharCode
final
Returns whether the character code matches the specified conditions.
ccis the character to test.digitspecifies if it matches digit.upperspecifies if it matches upper case.lowerspecifies if it matches lower case.whitespacespecifies if it matches whitespace.matchspecifies a string of characters that are matched (aka., allowed).
Implementation
static final isCharCode = util.isCharCode;