SwipeUpdateDetails constructor

SwipeUpdateDetails({
  1. SwipeDirection direction = SwipeDirection.horizontal,
  2. bool reached = false,
  3. bool previousReached = false,
  4. double progress = 0.0,
})

Create a new instance of SwipeUpdateDetails.

Implementation

SwipeUpdateDetails({
  this.direction = SwipeDirection.horizontal,
  this.reached = false,
  this.previousReached = false,
  this.progress = 0.0,
});