isNotNullOrEmpty property

bool isNotNullOrEmpty

Returns true if iterable is not null and not empty.

Implementation

bool get isNotNullOrEmpty {
  return this?.isNotEmpty ?? false;
}