isEmptyOrNull property
bool
get
isEmptyOrNull
Return true if the string this is null or empty
Implementation
bool get isEmptyOrNull => this?.isEmpty ?? true;
Return true if the string this is null or empty
bool get isEmptyOrNull => this?.isEmpty ?? true;