Event<T> constructor

Event<T>(
  1. DateTime start,
  2. String title,
  3. Color color, {
  4. DateTime? end,
  5. bool? isAllDay,
  6. String? description,
  7. String? label,
  8. String? location,
  9. Function? onTap,
  10. String? type,
})

Implementation

Event(
  this.start,
  this.title,
  this.color, {
  this.end,
  this.isAllDay,
  this.description,
  this.label,
  this.location,
  this.onTap,
  this.type,
});