MorphingFrame constructor

const MorphingFrame({
  1. Key? key,
  2. required MorphController controller,
  3. required Widget child,
  4. double minScale = 0.94,
  5. double maxBlur = 5.0,
})

Implementation

const MorphingFrame({
  super.key,
  required this.controller,
  required this.child,
  this.minScale = 0.94,
  this.maxBlur = 5.0,
});