UpdateWidget constructor

const UpdateWidget({
  1. Key? key,
  2. required bool transparentBackground,
  3. required Color backgroundColor,
  4. required String message,
  5. required Color textColor,
  6. required Widget updateButton,
  7. required bool isPriorityHigh,
  8. required Widget skipButton,
  9. required String iosAppId,
  10. required bool shouldWriteReview,
})

Implementation

const UpdateWidget({
  Key? key,
  required this.transparentBackground,
  required this.backgroundColor,
  required this.logo,
  required this.message,
  required this.textColor,
  required this.updateButton,
  required this.isPriorityHigh,
  required this.skipButton,
  required this.iosAppId,
  required this.shouldWriteReview,
}) : super(key: key);