Returns true if s is a not empty string.
true
s
bool isNotEmpty(String? s) => s != null && s.isNotEmpty;