tailColor property

Color? tailColor
final

Specifies the tail color

Widget build(BuildContext context) {
 return Scaffold(
   appBar: AppBar(),
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           gaugeThemeData: SfGaugeThemeData(
             tailColor: Colors.blue
           )
         ),
         child: SfRadialGauge(
           axes: <RadialAxis>[
             RadialAxis(
               radiusFactor: 0.8,
               pointers: <GaugePointer>[
                 NeedlePointer(
                   tailStyle: TailStyle(length: 0.5, width: 3),
                   needleStartWidth: 0,
                   needleEndWidth: 5,
                 )
               ],
             ),
           ],
         )
       ),
     )
  );
}

Implementation

final Color? tailColor;