BarcodeCalendarEvent constructor

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

Implementation

BarcodeCalendarEvent({
  required String rawValue,
  this.end,
  this.start,
  this.description,
  this.location,
  this.organizer,
  this.status,
  this.summary,
}) : super(valueType: BarcodeValueType.calendarEvent, rawValue: rawValue);