isBlank method

bool isBlank()

Implementation

bool isBlank() {
  if (isNull()) {
    return true;
  }
  return _isEmpty(this) ?? true;
}