EventTimeSelection constructor

const EventTimeSelection({
  1. Key? key,
  2. String? title,
  3. required EventNotificationModel? eventNotificationModel,
  4. ValueChanged? onSelectionChanged,
  5. required List<String> options,
  6. bool isStartTime = false,
})

Implementation

const EventTimeSelection(
    {Key? key,
    this.title,
    required this.eventNotificationModel,
    this.onSelectionChanged,
    required this.options,
    this.isStartTime = false})
    : super(key: key);