titleBackgroundColor property

Color titleBackgroundColor
final

Specifies the title background color

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

Implementation

final Color titleBackgroundColor;