AnimationQueueController constructor

AnimationQueueController([
  1. double _value = 0.0
])

Creates an animation queue controller with an optional initial value.

Parameters

  • _value - The initial value. Defaults to 0.0.

Example

final controller = AnimationQueueController(0.5);

Implementation

AnimationQueueController([this._value = 0.0]);