AnimationQueueController constructor
AnimationQueueController([
- double _value = 0.0
Creates an animation queue controller with an optional initial value.
Parameters
_value- The initial value. Defaults to0.0.
Example
final controller = AnimationQueueController(0.5);
Implementation
AnimationQueueController([this._value = 0.0]);