BarcodeCalenderEvent constructor

BarcodeCalenderEvent({
  1. String? description,
  2. String? location,
  3. String? status,
  4. String? summary,
  5. String? organizer,
  6. DateTime? start,
  7. DateTime? end,
})

Constructor to create an instance of BarcodeCalenderEvent.

Implementation

BarcodeCalenderEvent({
  this.description,
  this.location,
  this.status,
  this.summary,
  this.organizer,
  this.start,
  this.end,
});