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