delegatedTo property

Uri? delegatedTo

Retrieves the URI of the the user that this attendee has delegated the event or task to

Implementation

Uri? get delegatedTo => getParameterValue<Uri>(ParameterType.delegateTo);
void delegatedTo=(Uri? value)

Sets the delegatedTo URI

Implementation

set delegatedTo(Uri? value) => setOrRemoveParameter(
      ParameterType.delegateTo,
      UriParameter.create(ParameterType.delegateTo.typeName ?? '', value),
    );