isNotEmptyString property

bool get isNotEmptyString

Implementation

bool get isNotEmptyString {
  if (this?.isNotEmpty ?? false) {
    if (this == "null") {
      return false;
    } else {
      if (this!.trim().isNotEmpty) {
        return true;
      } else {
        return false;
      }
    }
  } else {
    return false;
  }
}