isEmptyOrNull property
bool
get
isEmptyOrNull
Returns true if the String is either null or empty.
Implementation
bool get isEmptyOrNull => this?.isEmpty ?? true;
Returns true if the String is either null or empty.
bool get isEmptyOrNull => this?.isEmpty ?? true;