platformViewId property
The id of the platform view, whose semantics nodes will be added as children to this node.
Implementation
int? get platformViewId => _platformViewId;Implementation
set platformViewId(int? value) {
  if (value == platformViewId) {
    return;
  }
  _platformViewId = value;
  _hasBeenAnnotated = true;
}