isWhiteSpaceOrEmptyOrNull static method

bool isWhiteSpaceOrEmptyOrNull(
  1. String str
)

Returns true for for all strings that are empty, null or only whitespace. 对于所有为空、空或只有空格的字符串返回true。

Implementation

static bool isWhiteSpaceOrEmptyOrNull(String str) {
  return removeWhiteSpace(str ?? "").isEmpty;
}