participantStatus property

ParticipantStatus? participantStatus

Gets the participant status of this attendee

The possible values depend on the type of the component.

Implementation

ParticipantStatus? get participantStatus =>
    getParameterValue<ParticipantStatus>(ParameterType.participantStatus);
void participantStatus=(ParticipantStatus? value)

Sets the participant status

Implementation

set participantStatus(ParticipantStatus? value) => setOrRemoveParameter(
      ParameterType.participantStatus,
      ParticipantStatusParameter.create(
        ParameterType.participantStatus.typeName ?? '',
        value,
      ),
    );