isImage property

bool isImage

Whether the semantics node represents an image.

Implementation

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

Implementation

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