Attendee class

Represents an attendee in a calendar event.

Each instance holds the type of the attendee, the status of the attendee, and the email address of the attendee.

Constructors

Attendee({String? type, Status? status, EmailAddress? emailAddress})
Creates a new instance of Attendee.
Attendee.fromJson(Map<String, dynamic> json)
Creates a new instance of Attendee from a JSON object.
factory

Properties

emailAddress EmailAddress?
An EmailAddress object representing the email address of the attendee.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
status Status?
A Status object representing the status of the attendee.
final
type String?
A string representing the type of the attendee.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts this Attendee object to a JSON object.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited