SchedulerBubbleStyle constructor

SchedulerBubbleStyle({
  1. AvatarStyle? avatarStyle,
  2. TextStyle? suggestedTimeTextStyle,
  3. Color? suggestedTimeBackground,
  4. BoxBorder? suggestedTimeBorder,
  5. ButtonElementStyle? scheduleButtonStyle,
  6. TextStyle? titleTextStyle,
  7. TextStyle? summaryTextStyle,
  8. TextStyle? durationTextStyle,
  9. Color? calendarSelectedDayBackgroundColor,
  10. Color? calendarSelectedDayTint,
  11. TextStyle? calendarWeekdayTextStyle,
  12. TextStyle? goalCompletionTextStyle,
  13. double? width,
  14. double? height,
  15. Color? background,
  16. BoxBorder? border,
  17. double? borderRadius,
  18. Gradient? gradient,
})

Implementation

SchedulerBubbleStyle({
  this.avatarStyle,
  this.suggestedTimeTextStyle,
  this.suggestedTimeBackground,
  this.suggestedTimeBorder,
  this.scheduleButtonStyle,
  this.titleTextStyle,
  this.summaryTextStyle,
  this.durationTextStyle,
  this.calendarSelectedDayBackgroundColor,
  this.calendarSelectedDayTint,
  this.calendarWeekdayTextStyle,
  this.goalCompletionTextStyle,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});