isNullOrEmpty property

bool get isNullOrEmpty

isNullOrEmpty: checks if the string is null or empty

Implementation

bool get isNullOrEmpty {
  return this == null || this!.isEmpty;
}