titleColor property

Color? titleColor
final

Specifies the title color

Widget build(BuildContext context) {
 return Scaffold(
   appBar: AppBar(),
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           gaugeThemeData: SfGaugeThemeData(
             titleColor: Colors.lightBlue
           )
         ),
         child: SfRadialGauge(
           title: GaugeTitle(text: 'Title'),
         ),
       ),
     )
  );
}

Implementation

final Color? titleColor;