Returns true if c is a blank char (space, \t, \n, \r).
true
c
bool isBlankChar(String? c) { return c == ' ' || c == '\n' || c == '\t' || c == '\r'; }