isblank method

bool isblank(
  1. String c
)

Checks if the character is a blank character (space or tab).

Implementation

bool isblank(String c) {
  int code = _getCode(c);
  return code == 32 || code == 9;
}