CalendarTimestamp<T extends CalendarEvent> constructor

const CalendarTimestamp<T extends CalendarEvent>({
  1. Key? key,
  2. required int hour,
  3. int min = 0,
  4. bool showTime = true,
})

Implementation

const CalendarTimestamp({
  super.key,
  required this.hour,
  this.min = 0,
  this.showTime = true,
});