sentBy property

Uri? sentBy

Gets the sender of this organizer

Implementation

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

Sets the sender of this organizer

Implementation

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