SheetDragEndDetails constructor

SheetDragEndDetails({
  1. required VerticalDirection axisDirection,
  2. required double velocityX,
  3. required double velocityY,
})

Creates details for the end of a sheet drag.

Implementation

SheetDragEndDetails({
  required super.axisDirection,
  required this.velocityX,
  required this.velocityY,
});