markerIconStrokeWidth property

double markerIconStrokeWidth
final

Specifies the stroke width for marker icon.

Widget build(BuildContext context) {
 return Scaffold(
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           mapsThemeData: SfMapsThemeData(
             markerIconStrokeWidth: 2
           )
         ),
         child: SfMaps(),
       ),
     )
  );
}

Implementation

final double markerIconStrokeWidth;