DragWithAnimationController constructor

const DragWithAnimationController({
  1. Key? key,
  2. required ValueNotifier<double>? percentageNotifier,
  3. required List<TriggerValWithControllerEntry> controllers,
  4. required Widget child,
  5. ValueNotifier<TriggerValWithControllerEntry?>? activeControllerNotifier,
  6. Axis? direction = Axis.horizontal,
  7. int? initIndex = 0,
  8. bool? reverse = false,
})

Implementation

const DragWithAnimationController(
    {Key? key,
    required this.percentageNotifier,
    required this.controllers,
    required this.child,
    this.activeControllerNotifier,
    this.direction = Axis.horizontal,
    this.initIndex = 0,
    this.reverse = false})
    : super(key: key);