edgeStyle property
edgeStyle
Set the style of the edges of the ValueBar.
default is to edgeStyle =
LinearEdgeStyle.bothCurve`
Note : It tells to which edge of the valuebar to apply the supplied borderRadius. It has no use if borderRadius is not supplied or is zero.
const LinearGauge(
valueBar: [
ValueBar(
value: 50,
borderRadius:10,
edgeStyle:LinearEdgeStyle.bothCurve,
),
],
),
Implementation
final LinearEdgeStyle edgeStyle;