Checks if the given String is null or empty.
Example:
String? value = null; print(value.isEmptyOrNull); // true
bool get isEmptyOrNull => this == null || (this != null && this!.isEmpty) || (this != null && this! == 'null');