AttendanceAcknowledgementRouteArgs constructor

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

Implementation

const AttendanceAcknowledgementRouteArgs({
  this.key,
  this.appLocalizations,
  required this.label,
  this.subLabel,
  this.description,
  this.descriptionWidget,
  this.action,
  this.actionLabel,
  this.icon,
  this.color,
  this.enableBackToSearch = true,
  this.secondaryAction,
  this.secondaryLabel,
});