isSpace method

bool isSpace(
  1. String c
)

Implementation

bool isSpace(String c) {
  if (c == ' ' || c == '\t' || c == '\n' || c == '\r') {
    return true;
  }
  return false;
}