isEmptyOrNull property
Return true
if the string this
is null
or empty
Implementation
bool get isEmptyOrNull => this == null || isEmpty;
Return true
if the string this
is null
or empty
bool get isEmptyOrNull => this == null || isEmpty;