S360fTimelineItem constructor

S360fTimelineItem({
  1. required String title,
  2. required String subtitle,
  3. required String author,
  4. required DateTime dateTime,
  5. required bool isCompleted,
})

Creates a timeline item with the specified properties.

All parameters are required to ensure complete timeline entries.

Implementation

S360fTimelineItem({
  required this.title,
  required this.subtitle,
  required this.author,
  required this.dateTime,
  required this.isCompleted,
});