isEmpty property

bool isEmpty

Whether this string is empty.

Returns true if itself is Null.

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

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

Implementation

bool get isEmpty {
  if (this == null) {
    return true;
  }
  return this!.isEmpty;
}