SimpleSwipeConfig constructor

const SimpleSwipeConfig({
  1. double verticalThreshold = 50.0,
  2. double horizontalThreshold = 50.0,
  3. SwipeDetectionBehavior swipeDetectionBehavior = SwipeDetectionBehavior.singularOnEnd,
})

Creates a SimpleSwipeConfig object.

Implementation

const SimpleSwipeConfig({
  this.verticalThreshold = 50.0,
  this.horizontalThreshold = 50.0,
  this.swipeDetectionBehavior = SwipeDetectionBehavior.singularOnEnd,
});