isNullOrEmpty method

bool isNullOrEmpty()

Implementation

bool isNullOrEmpty() {
  final self = this;
  if (self == null) {
    return true;
  } else {
    return self.isEmpty;
  }
}