userType property

CalendarUserType userType

Retrieves the type of the user.

Defaults to CalendarUserType.unknown.

Implementation

CalendarUserType get userType =>
    getParameterValue<CalendarUserType>(ParameterType.calendarUserType) ??
    CalendarUserType.unknown;
void userType=(CalendarUserType? value)

Set the type of the user

Implementation

set userType(CalendarUserType? value) => setOrRemoveParameter(
      ParameterType.calendarUserType,
      CalendarUserTypeParameter.create(
        ParameterType.calendarUserType.typeName ?? '',
        value,
      ),
    );