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,
})

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,
}) : super(key: key);