SimpleEventStripEvent constructor

const SimpleEventStripEvent({
  1. required DateTime date,
  2. required String label,
  3. String? description,
  4. String? tag,
  5. double weight = 1,
  6. Color? color,
})

Implementation

const SimpleEventStripEvent({
  required this.date,
  required this.label,
  this.description,
  this.tag,
  this.weight = 1,
  this.color,
});