isEmptyTrim property

bool get isEmptyTrim

isEmptyTrim: Is this empty (trimmed)

Implementation

bool get isEmptyTrim {
  if (isNull) return false;
  return this!.trim().isEmpty;
}