TransitionState constructor

TransitionState({
  1. required DateTime addedAt,
  2. double transitionProgress = 0.0,
  3. double growthProgress = 0.0,
})

Implementation

TransitionState({
  required this.addedAt,
  this.transitionProgress = 0.0,
  this.growthProgress = 0.0,
});