SimpleMarkerAction constructor
const
SimpleMarkerAction({
- Key? key,
- required MarkerActionCallback onPressed,
- required Icon icon,
- BoxDecoration? decoration,
- double width = 40,
- double height = 40,
Implementation
const SimpleMarkerAction({
super.key,
required this.onPressed,
required this.icon,
this.decoration,
this.width = 40,
this.height = 40,
});