isNullOrEmpty property

bool isNullOrEmpty

Implementation

bool get isNullOrEmpty {
  final string = this;
  return string == null || string.isEmpty;
}