Returns true for for all strings that are empty, null or only whitespace.
bool isWhiteSpaceOrEmptyOrNull(String? str) { return removeWhiteSpace(str ?? "").isEmpty; }