isEmpty property

bool isEmpty

Whether this FormMediaValue is empty.

Returns true if itself is Null.

このFormMediaValueが空かどうかを調べます。

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

Implementation

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