isNotEmpty property

bool isNotEmpty

Whether this int is not null or zero.

Implementation

bool get isNotEmpty {
  if (this == null) {
    return false;
  }
  return this != 0;
}