toggledItemStrokeColor property

Color? toggledItemStrokeColor
final

Stroke color for the toggled legend item's respective shape or bubble.

Widget build(BuildContext context) {
 return Scaffold(
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           mapsThemeData: SfMapsThemeData(
             toggledItemStrokeColor: Colors.green,
             toggledItemStrokeWidth: 2
           )
         ),
         child: SfMaps(),
       ),
     )
  );
}

Implementation

final Color? toggledItemStrokeColor;