updateSemantics method

void updateSemantics(
  1. SemanticsUpdate update
)

Sends the provided ui.SemanticsUpdate to the ui.FlutterView associated with this RenderView.

A ui.SemanticsUpdate is produced by a SemanticsOwner during the EnginePhase.flushSemantics phase.

Implementation

void updateSemantics(ui.SemanticsUpdate update) {
  _view.updateSemantics(update);
}