platformViewId property

int? platformViewId

The id of the platform view, whose semantics nodes will be added as children to this node.

Implementation

int? get platformViewId => _platformViewId;
void platformViewId=(int? value)

Implementation

set platformViewId(int? value) {
  if (value == platformViewId) {
    return;
  }
  _platformViewId = value;
  _hasBeenAnnotated = true;
}