isNullOrBlank property

bool isNullOrBlank

Implementation

bool get isNullOrBlank {
  final self = this;
  if (self is String) {
    return self.isNullOrBlank;
  } else {
    return this == null;
  }
}