isNullOrEmpty property
bool
get
isNullOrEmpty
check if String is Null and Empty
Implementation
bool get isNullOrEmpty => this == null || this!.isEmpty;
check if String is Null and Empty
bool get isNullOrEmpty => this == null || this!.isEmpty;