isWhitespace method

bool isWhitespace(
  1. String char
)

Implementation

bool isWhitespace(String char) {
  return char.trim().isEmpty;
}