ValueAdapter constructor

ValueAdapter(
  1. double value, {
  2. bool? animated,
  3. Direction? direction,
})

Implementation

ValueAdapter(double value, {bool? animated, Direction? direction})
    : super(
        ValueNotifier<double>(value),
        animated: animated,
        direction: direction,
      );