selectedMidVertexSymbol property
The symbol used to draw the currently selected mid-vertex of the current geometry when editing polygon or polyline geometries.
When a mid-vertex is selected, it is displayed with this symbol instead of GeometryEditorStyle.midVertexSymbol.
As soon as a mid-vertex is moved interactively, it is replaced by a vertex that is part of the GeometryEditor.geometry, and is displayed with the GeometryEditorStyle.selectedVertexSymbol.
Implementation
ArcGISSymbol? get selectedMidVertexSymbol => _selectedMidVertexSymbol.value;
Implementation
set selectedMidVertexSymbol(ArcGISSymbol? value) =>
_selectedMidVertexSymbol.value = value;