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;