isNullOrEmpty property

bool isNullOrEmpty

Implementation

bool get isNullOrEmpty {
  if (this == null) return true;
  if (this!.isEmpty) return true;
  return false;
}