I don't know if this is a bug or user error:
When I define an all-day event for only 1 day, it renders showing the start and end time.
I also get the same result if I define an end time later than the start time,, still on the same day.
Thank you !
DateTime startTime = DateTime(2022, 5, 14);
DateTime endTime = startTime.add(const Duration(days: 27));
meetings.add( Meeting(subject:'Multiday', startTime:startTime, endTime:endTime, color:const Color(0xFF0F8644), isAllDay: true));
endTime = startTime.add(const Duration(days: 4));
meetings.add( Meeting(subject:'Sub multiday', startTime:startTime, endTime:endTime, color:Colors.blue, isAllDay: true));
startTime = startTime.add(const Duration(days: 13));
// using this end time gives the same result as using the start time as the end time
// endTime = startTime.add(const Duration(minutes:10));
meetings.add( Meeting(subject:'Single Day', startTime:startTime, endTime:startTime, color:Colors.red, isAllDay: true));
