AttendanceAcknowledgementPage constructor
AttendanceAcknowledgementPage({
- Key? key,
- AttendanceLocalization? appLocalizations,
- required String label,
- String? subLabel,
- String? description,
- Widget? descriptionWidget,
- VoidCallback? action,
- String? actionLabel,
- IconData? icon,
- Color? color,
- bool enableBackToSearch = true,
- VoidCallback? secondaryAction,
- 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;