isNullOrEmpty property
bool
get
isNullOrEmpty
Implementation
bool get isNullOrEmpty {
if (this == null) return true;
if (this!.isEmpty) return true;
return false;
}
bool get isNullOrEmpty {
if (this == null) return true;
if (this!.isEmpty) return true;
return false;
}