isNotEmptyTrim property
bool
get
isNotEmptyTrim
isNotEmptyTrim: Is this not empty (trimmed)
Implementation
bool get isNotEmptyTrim {
if (isNull) return false;
return this!.trim().isNotEmpty;
}
isNotEmptyTrim: Is this not empty (trimmed)
bool get isNotEmptyTrim {
if (isNull) return false;
return this!.trim().isNotEmpty;
}