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