markerIconStrokeColor property

Color? markerIconStrokeColor
final

Specifies the stroke color for marker icon.

Widget build(BuildContext context) {
 return Scaffold(
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           mapsThemeData: SfMapsThemeData(
             markerIconStrokeColor: Colors.green[900]
           )
         ),
         child: SfMaps(),
       ),
     )
  );
}

Implementation

final Color? markerIconStrokeColor;