bubbleHoverStrokeColor property

Color? bubbleHoverStrokeColor
final

Specifies the color which should apply on the stroke of the bubbles while hovering in the web platform.

Widget build(BuildContext context) {
 return Scaffold(
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           mapsThemeData: SfMapsThemeData(
             bubbleHoverStrokeColor : Colors.black
             bubbleHoverStrokeWidth : 2.0
           )
         ),
         child: SfMaps(),
       ),
     )
  );
}

Implementation

final Color? bubbleHoverStrokeColor;