SelectionEdgeUpdateEvent.forEnd constructor Null safety

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

Creates a selection end edge update event.

The globalPosition contains the new location of the selection end edge.

Implementation

const SelectionEdgeUpdateEvent.forEnd({
  required this.globalPosition
}) : super._(SelectionEventType.endEdgeUpdate);