MorphState constructor

const MorphState({
  1. required MorphPhase phase,
  2. required double progress,
  3. bool isDragging = false,
  4. double velocity = 0.0,
})

Implementation

const MorphState({
  required this.phase,
  required this.progress,
  this.isDragging = false,
  this.velocity = 0.0,
});