CallbackEffect constructor

const CallbackEffect({
  1. Duration? delay,
  2. Duration? duration,
  3. Curve? curve,
  4. required ValueChanged<bool> callback,
})

Implementation

const CallbackEffect({
  super.delay,
  super.duration,
  super.curve,
  required this.callback,
});