XBCalendarHmsVM constructor

XBCalendarHmsVM({
  1. required BuildContext context,
})

Implementation

XBCalendarHmsVM({required super.context}) {
  isSingle = true;
  if (widget.selectedDates != null && widget.selectedDates!.isNotEmpty) {
    selectedHMS = [
      widget.selectedDates!.first.hour,
      widget.selectedDates!.first.minute,
      widget.selectedDates!.first.second
    ];
  }
}