UFUScaleInOutAnim constructor

const UFUScaleInOutAnim({
  1. Key? key,
  2. Duration? duration,
  3. required String firstChildKey,
  4. required Widget firstChild,
  5. bool? forward = true,
  6. Widget? secondChild,
  7. String? secondChildKey,
})

Implementation

const UFUScaleInOutAnim({
  super.key,
  this.duration,
  required this.firstChildKey,
  required this.firstChild,
  this.forward = true,
  this.secondChild,
  this.secondChildKey,
  });