SimpleMarkerAction constructor

const SimpleMarkerAction({
  1. Key? key,
  2. required MarkerActionCallback onPressed,
  3. required Icon icon,
  4. BoxDecoration? decoration,
  5. double width = 40,
  6. double height = 40,
})

Implementation

const SimpleMarkerAction({
  super.key,
  required this.onPressed,
  required this.icon,
  this.decoration,
  this.width = 40,
  this.height = 40,
});