primaryRulerColor property

Color? primaryRulerColor
finalinherited

primaryRulerColor sets the color of the ruler which is attached to labels

default is to `primaryRulerColor =Colors.grey

Example

child: const LinearGauge(
rulers : RulerStyle(
 primaryRulerColor: Colors.green,
)
),

Implementation

final Color? primaryRulerColor;