markerIconColor property

Color? markerIconColor
final

Specifies the fill color for marker icon.

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

Implementation

final Color? markerIconColor;