isWhitespace static method

bool isWhitespace(
  1. String c
)

Implementation

static bool isWhitespace(String c) {
  return c == ' ' || c == '\t';
}