AnimationControllerTransfer constructor

const AnimationControllerTransfer({
  1. Key? key,
  2. required void controllerProvider(
    1. AnimationController
    ),
  3. required Widget child,
})

Implementation

const AnimationControllerTransfer({
  super.key,
  required this.controllerProvider,
  required super.child,
});