FeedbackDialog constructor

const FeedbackDialog({
  1. Key? key,
  2. CommunicationViewType type = CommunicationViewType.feedback,
  3. CommunicationTheme theme = CommunicationTheme.light,
  4. String? title,
  5. String? subtitle,
  6. String? buttonText,
  7. IconData? icon,
  8. String? placeholder,
  9. String? submitText,
  10. String? successTitle,
  11. String? successMessage,
  12. List<Color>? lightGradientColors,
  13. List<Color>? darkGradientColors,
})

Implementation

const FeedbackDialog({
  super.key,
  this.type = CommunicationViewType.feedback,
  this.theme = CommunicationTheme.light,
  this.title,
  this.subtitle,
  this.buttonText,
  this.icon,
  this.placeholder,
  this.submitText,
  this.successTitle,
  this.successMessage,
  this.lightGradientColors,
  this.darkGradientColors,
});