image property

bool image

If non-null, sets the SemanticsNode.isImage semantic to the given value.

Implementation

bool get image => _image;
void image= (bool value)

Implementation

set image(bool value) {
  if (_image == value)
    return;
  _image = value;
}