isNotEmpty property

bool isNotEmpty

Returns true if int is not Null or 0.

intNull、もしくは0でない場合trueを返します。

Implementation

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