isNotEmpty property

bool isNotEmpty

Returns true if num is not Null or 0.

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

Implementation

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