isNotEmpty property
bool
get
isNotEmpty
Whether this string is not empty.
Implementation
bool get isNotEmpty {
return this != null && this!.length > 0;
}
Whether this string is not empty.
bool get isNotEmpty {
return this != null && this!.length > 0;
}