Returns true if s is neither null, empty nor is solely made of whitespace characters.
true
s
See also:
bool isNotBlank(String? s) => s != null && s.trim().isNotEmpty;