isNullOrEmpty property
bool
get
isNullOrEmpty
Check if string is null or empty
Implementation
bool get isNullOrEmpty {
return this == null || this!.isEmpty;
}
Check if string is null or empty
bool get isNullOrEmpty {
return this == null || this!.isEmpty;
}