PopupLayerOptions constructor

const PopupLayerOptions({
  1. MarkerWidgetBuilder? builder,
  2. Alignment alignment = Alignment.topCenter,
  3. bool rotate = true,
  4. Duration animationDuration = const Duration(milliseconds: 300),
  5. Curve animationCurve = Curves.easeOut,
  6. EdgeInsets? margin,
})

Implementation

const PopupLayerOptions({
  super.builder,
  super.alignment = Alignment.topCenter,
  super.rotate = true,
  this.animationDuration = const Duration(milliseconds: 300),
  this.animationCurve = Curves.easeOut,
  this.margin,
});