GuideBubble constructor

const GuideBubble({
  1. required String title,
  2. required String body,
  3. required double maxWidth,
  4. required double padding,
  5. required Color backgroundColor,
  6. required Color borderColor,
  7. required double borderWidth,
  8. required double cornerRadius,
  9. required bool shadow,
  10. required Color titleColor,
  11. required double titleSize,
  12. required FontWeight titleWeight,
  13. required Color bodyColor,
  14. required double bodySize,
  15. required Color buttonPrimaryBackgroundColor,
  16. required Color buttonPrimaryTextColor,
  17. required Color buttonGhostTextColor,
  18. required List<GuideAction> actions,
  19. required VariableScope scope,
  20. required ValueChanged<GuideAction> onAction,
  21. Key? key,
})

Implementation

const GuideBubble({
  required this.title,
  required this.body,
  required this.maxWidth,
  required this.padding,
  required this.backgroundColor,
  required this.borderColor,
  required this.borderWidth,
  required this.cornerRadius,
  required this.shadow,
  required this.titleColor,
  required this.titleSize,
  required this.titleWeight,
  required this.bodyColor,
  required this.bodySize,
  required this.buttonPrimaryBackgroundColor,
  required this.buttonPrimaryTextColor,
  required this.buttonGhostTextColor,
  required this.actions,
  required this.scope,
  required this.onAction,
  super.key,
});