EventTimeSelection constructor
const
EventTimeSelection({
- Key? key,
- String? title,
- required EventNotificationModel? eventNotificationModel,
- ValueChanged? onSelectionChanged,
- required List<
String> options, - bool isStartTime = false,
Implementation
const EventTimeSelection(
{Key? key,
this.title,
required this.eventNotificationModel,
this.onSelectionChanged,
required this.options,
this.isStartTime = false})
: super(key: key);