isNotEmptyOrNull property
String?
get
isNotEmptyOrNull
Returns null for a empty String
Implementation
String? get isNotEmptyOrNull => isEmpty ? null : this;
Returns null for a empty String
String? get isNotEmptyOrNull => isEmpty ? null : this;