isNullOrEmpty property
bool
get
isNullOrEmpty
Whether this string is null or empty.
Implementation
bool get isNullOrEmpty => let((it) => it == null || it.isEmpty);
Whether this string is null or empty.
bool get isNullOrEmpty => let((it) => it == null || it.isEmpty);