radialOffset property

double radialOffset
final

radialOffset denotes the offset of the value bar. The value bar will be rendered at the given offset.

RadialGauge(
        valueBar: [
          RadialValueBar(
            value: 50,
            color: Colors.blue
            radialOffset: 10,
          ),
        ],
        track: RadialTrack(
          start: 0,
          end: 100,

        ),
      ),

Implementation

final double radialOffset;