isNotEmpty property

bool isNotEmpty

Whether this string is not empty.

Returns false if itself is Null.

この文字列が空でないかどうかを調べます。

自身がNullの場合falseを返します。

Implementation

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