FeedbackPhotoCardWidget constructor

FeedbackPhotoCardWidget({
  1. required PhotoCard photoCard,
  2. required double cardHeight,
  3. required double cardWidth,
  4. required bool hideCenterButton,
  5. required bool hideTitleText,
  6. required bool hideDescriptionText,
  7. required BoxFit imageScaleType,
  8. required Color? imageBackgroundColor,
  9. required FeedbackPhotoCardValueNotifier feedbackPhotoCardValueNotifier,
  10. IconData? leftButtonIcon,
  11. IconData? centerButtonIcon,
  12. IconData? rightButtonIcon,
  13. Color? leftButtonIconColor,
  14. Color? leftButtonBackgroundColor,
  15. Color? centerButtonIconColor,
  16. Color? centerButtonBackgroundColor,
  17. Color? rightButtonIconColor,
  18. Color? rightButtonBackgroundColor,
  19. Key? key,
})

Implementation

FeedbackPhotoCardWidget({
  required this.photoCard,
  required this.cardHeight,
  required this.cardWidth,
  required this.hideCenterButton,
  required this.hideTitleText,
  required this.hideDescriptionText,
  required this.imageScaleType,
  required this.imageBackgroundColor,
  required this.feedbackPhotoCardValueNotifier,
  this.leftButtonIcon,
  this.centerButtonIcon,
  this.rightButtonIcon,
  this.leftButtonIconColor,
  this.leftButtonBackgroundColor,
  this.centerButtonIconColor,
  this.centerButtonBackgroundColor,
  this.rightButtonIconColor,
  this.rightButtonBackgroundColor,
  Key? key,
}) : super(key: key);