reply method

VComponent reply(
  1. AttendeeProperty attendee, {
  2. VComponent? parent,
  3. String? comment,
})

Creates a reply for this component.

Subclasses have to implement this when they override canReply. Compare canReply

Implementation

VComponent reply(
  AttendeeProperty attendee, {
  VComponent? parent,
  String? comment,
}) {
  throw StateError('VComponent cannot reply');
}