selectionStrokeWidth property
Specifies the stroke width for selected shape.
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: SfTheme(
data: SfThemeData(
mapsThemeData: SfMapsThemeData(
selectionStrokeWidth: 2
)
),
child: SfMaps(),
),
)
);
}
Implementation
final double selectionStrokeWidth;