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