InteractiveMarker constructor

const InteractiveMarker({
  1. required LatLng point,
  2. required Widget child,
  3. Key? key,
  4. double width = 30,
  5. double height = 30,
  6. Alignment? alignment,
  7. bool? rotate,
  8. bool hidden = false,
  9. List<MarkerOptions> options = const [],
})

Implementation

const InteractiveMarker({
  required super.point,
  required super.child,
  super.key,
  super.width = 30,
  super.height = 30,
  super.alignment,
  super.rotate,
  this.hidden = false,
  this.options = const [],
});