isNullOrEmpty property
bool
get
isNullOrEmpty
Returns null if the string is empty
Implementation
bool get isNullOrEmpty => this == null || this!.isEmpty;
Returns null if the string is empty
bool get isNullOrEmpty => this == null || this!.isEmpty;