ScheduleItem constructor

ScheduleItem({
  1. bool? isPrivate,
  2. String? status,
  3. String? subject,
  4. String? location,
  5. Time? start,
  6. Time? end,
})

Creates a new instance of ScheduleItem.

All parameters are optional.

Implementation

ScheduleItem({
  this.isPrivate,
  this.status,
  this.subject,
  this.location,
  this.start,
  this.end,
});