ActionMarkerOptions constructor

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

Implementation

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