AnimationToLayoutNotifier constructor

const AnimationToLayoutNotifier({
  1. Key? key,
  2. required Listenable? animation,
  3. required Widget child,
})

Implementation

const AnimationToLayoutNotifier({
  super.key,
  required this.animation,
  required this.child,
});