inverseRulers property

bool? inverseRulers
finalinherited

inversedRulers allows for the inversion of the gauge's rulers, reversing the direction of the scale and indicators.

default is to inversedRulers = false

Example

child: const LinearGauge(
rulers : RulerStyle(
 inversedRulers: true,
),

Implementation

final bool? inverseRulers;