DurationEffectController constructor

DurationEffectController(
  1. double duration
)

Implementation

DurationEffectController(this.duration)
  : assert(duration >= 0, 'Duration cannot be negative: $duration'),
    _timer = 0,
    super.empty();