AttendanceAcknowledgementPage constructor

AttendanceAcknowledgementPage({
  1. Key? key,
  2. AttendanceLocalization? appLocalizations,
  3. required String label,
  4. String? subLabel,
  5. String? description,
  6. Widget? descriptionWidget,
  7. VoidCallback? action,
  8. String? actionLabel,
  9. IconData? icon,
  10. Color? color,
  11. bool enableBackToSearch = true,
  12. VoidCallback? secondaryAction,
  13. String? secondaryLabel,
})

Implementation

AttendanceAcknowledgementPage({
  super.key,
  super.appLocalizations,
  required this.label,
  this.subLabel,
  this.description,
  this.descriptionWidget,
  this.action,
  this.actionLabel,
  IconData? icon,
  Color? color,
  this.enableBackToSearch = true,
  this.secondaryAction,
  this.secondaryLabel,
})  : color = color ?? DigitTheme.instance.colors.darkSpringGreen,
      icon = icon ?? Icons.check_circle;