isNullOrEmpty method
Return true if given string is null or empty
Implementation
bool isNullOrEmpty() =>
(this == null || this?.isEmpty == true) ? true : false;
Return true if given string is null or empty
bool isNullOrEmpty() =>
(this == null || this?.isEmpty == true) ? true : false;