ActionLayerOptions constructor

const ActionLayerOptions({
  1. MarkerWidgetBuilder? builder,
  2. Alignment alignment = Alignment.topRight,
  3. bool rotate = true,
  4. Duration animationDuration = const Duration(milliseconds: 150),
  5. Curve animationCurve = Curves.easeInOut,
  6. EdgeInsets? margin,
})

Implementation

const ActionLayerOptions({
  super.builder,
  super.alignment = Alignment.topRight,
  super.rotate = true,
  this.animationDuration = const Duration(milliseconds: 150),
  this.animationCurve = Curves.easeInOut,
  this.margin,
});