CalendarParsedResult constructor
      
      CalendarParsedResult()
     
    
    
Implementation
CalendarParsedResult(
  this.summary,
  String? startString,
  String? endString,
  String? durationString,
  this.location,
  this.organizer,
  this._attendees,
  this.description,
  this.latitude,
  this.longitude,
) : super(ParsedResultType.calendar) {
  try {
    _start = _parseDate(startString);
  } on ParseException catch (e) {
    throw ArgumentError(e.toString());
  }
  if (endString == null) {
    final durationMS = _parseDurationMS(durationString);
    _end = durationMS < 0 ? -1 : _start + durationMS;
  } else {
    try {
      _end = _parseDate(endString);
    } on ParseException catch (e) {
      throw ArgumentError(e.toString());
    }
  }
  _startAllDay = startString != null && startString.length == 8;
  _endAllDay = endString != null && endString.length == 8;
}