AnimationConfiguratorClass constructor

const AnimationConfiguratorClass({
  1. Key? key,
  2. Duration? duration,
  3. Duration? delay,
  4. required Widget animatedChildBuilder(
    1. Animation<double>
    ),
})

Implementation

const AnimationConfiguratorClass({
  Key? key,
  this.duration,
  this.delay,
  required this.animatedChildBuilder,
}) : super(key: key);