SelectionEdgeUpdateEvent.forStart constructor Null safety

const SelectionEdgeUpdateEvent.forStart(
  1. {required Offset globalPosition}
)

Creates a selection start edge update event.

The globalPosition contains the location of the selection start edge.

Implementation

const SelectionEdgeUpdateEvent.forStart({
  required this.globalPosition
}) : super._(SelectionEventType.startEdgeUpdate);