isNotNullOrWhiteSpace property
bool
get
isNotNullOrWhiteSpace
isNotNullOrWhiteSpace: checks if the string is not null, empty, or whitespace
Implementation
bool get isNotNullOrWhiteSpace {
return !isNullOrWhiteSpace;
}