AnchoredHelper constructor

const AnchoredHelper({
  1. required String anchorKeyId,
  2. Function? onLeftBtnTap,
  3. Function? onRightTap,
  4. Text? rightBtnText,
  5. Text? leftBtnText,
  6. Text? title,
  7. Text? description,
  8. Function? onError,
  9. ButtonStyle? leftBtnStyle,
  10. ButtonStyle? rightBtnStyle,
  11. Function? onTapAnchor,
  12. Key? key,
  13. required Color bgColor,
  14. Anchor? anchor,
  15. AnchorWidgetFactory widgetFactory = AnchoredCircleHoleHelper.anchorFactory,
})

Implementation

const AnchoredHelper({
  required this.anchorKeyId,
  this.onLeftBtnTap,
  this.onRightTap,
  this.rightBtnText,
  this.leftBtnText,
  this.title,
  this.description,
  this.onError,
  this.leftBtnStyle,
  this.rightBtnStyle,
  this.onTapAnchor,
  Key? key,
  required this.bgColor,
  this.anchor,
  this.widgetFactory = AnchoredCircleHoleHelper.anchorFactory,
}) : super(key: key);