isImage property

bool get isImage

Whether the semantics node represents an image.

Implementation

bool get isImage => _hasFlag(SemanticsFlag.isImage);
set isImage (bool value)

Implementation

set isImage(bool value) {
  _setFlag(SemanticsFlag.isImage, value);
}