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