ScaleController constructor

ScaleController({
  1. num value = 0,
})

Creates a ScaleController with an initial value.

The initialValue is the starting value for the controller. It sets the initial numeric value for the unit when the controller is first created.

Implementation

ScaleController({num value = 0}) : super(value);