HorizontalRelease constructor

const HorizontalRelease({
  1. required HorizontalDir direction,
  2. required HorizontalZone startZone,
  3. required HorizontalZone endZone,
  4. List<AxisFling> decay = const [],
  5. AxisFling? settle,
})

Implementation

const HorizontalRelease({
  required this.direction,
  required this.startZone,
  required this.endZone,
  super.decay,
  super.settle,
});