ComputedEffectTimingValue constructor

ComputedEffectTimingValue({
  1. CSSNumberish? startTime,
  2. CSSNumberish? endTime,
  3. CSSNumberish? activeDuration,
  4. CSSNumberish? localTime,
  5. double? progress,
  6. double? currentIteration,
})

Implementation

ComputedEffectTimingValue({
  this.startTime,
  this.endTime,
  this.activeDuration,
  this.localTime,
  this.progress,
  this.currentIteration,
});