AnimatedToggleProperties<T> constructor

const AnimatedToggleProperties<T>({
  1. required T value,
  2. required int index,
  3. required double animationValue,
})

Implementation

const AnimatedToggleProperties({
  required super.value,
  required super.index,
  required this.animationValue,
});