getParameters method
Implementation
@override
List<CalendarParameter<CalendarParameterValue>> getParameters() {
return [
if (locale != null) LanguageParameter(locale!),
if (commonName != null) CommonNameParameter(commonName!),
if (directoryEntryUri != null)
DirectoryEntryParameter(directoryEntryUri!),
if (sentByEmail != null) SentByParameter(sentByEmail!),
];
}