DragPercentageProvider constructor

DragPercentageProvider({
  1. Key? key,
  2. bool reverse = false,
  3. Axis? direction = Axis.horizontal,
  4. required Widget child,
  5. required ValueNotifier<double> valListener,
  6. double? initVal,
})

Implementation

DragPercentageProvider(
    {Key? key,
    this.reverse = false,
    this.direction = Axis.horizontal,
    required this.child,
    required this.valListener,
    this.initVal})
    : super(key: key);