notNullStr property

String get notNullStr

Implementation

String get notNullStr {
  if (isNullOrEmpty) return "";
  return this!;
}