isNotNullOrEmpty property

bool isNotNullOrEmpty

Checks whether string is empty or null Checks whether string is not empty or null

Implementation

// bool get isNullOrEmpty {
//   return isNotEmpty;
// }

/// Checks whether string is not empty or null
bool get isNotNullOrEmpty {
  return isNotEmpty;
}