FAnimationController constructor

FAnimationController({
  1. required double duration,
  2. void onComplete()?,
  3. void onFrame(
    1. double value,
    2. double elapsed
    )?,
})

Implementation

FAnimationController({
  required this.duration,
  this.onComplete,
  this.onFrame,
});