possibleEnumsConverter property
Implementation
static Map<Type, Converter<String, Object?>> possibleEnumsConverter = {
ServiceResult: (stringValue) =>
EnumToString.fromString(ServiceResult.values, stringValue),
ServiceError: (stringValue) =>
EnumToString.fromString(ServiceError.values, stringValue),
MapiPropertyType: (stringValue) =>
EnumToString.fromString(MapiPropertyType.values, stringValue),
Sensitivity: (stringValue) =>
EnumToString.fromString(Sensitivity.values, stringValue),
Importance: (stringValue) =>
EnumToString.fromString(Importance.values, stringValue),
ItemFlagStatus: (stringValue) =>
EnumToString.fromString(ItemFlagStatus.values, stringValue),
MeetingResponseType: (stringValue) =>
EnumToString.fromString(MeetingResponseType.values, stringValue),
AppointmentType: (stringValue) =>
EnumToString.fromString(AppointmentType.values, stringValue),
MailboxType: (stringValue) =>
EnumToString.fromString(MailboxType.values, stringValue),
TaskStatus: (stringValue) =>
EnumToString.fromString(TaskStatus.values, stringValue),
BodyType: (stringValue) =>
EnumToString.fromString(BodyType.values, stringValue),
StandardUser: (stringValue) =>
EnumToString.fromString(StandardUser.values, stringValue),
PermissionScope: (stringValue) =>
EnumToString.fromString(PermissionScope.values, stringValue),
FolderPermissionReadAccess: (stringValue) =>
EnumToString.fromString(FolderPermissionReadAccess.values, stringValue),
FolderPermissionLevel: (stringValue) =>
EnumToString.fromString(FolderPermissionLevel.values, stringValue),
EmailAddressKey: (stringValue) =>
EnumToString.fromString(EmailAddressKey.values, stringValue),
PhoneNumberKey: (stringValue) =>
EnumToString.fromString(PhoneNumberKey.values, stringValue),
PhysicalAddressKey: (stringValue) =>
EnumToString.fromString(PhysicalAddressKey.values, stringValue),
ImAddressKey: (stringValue) =>
EnumToString.fromString(ImAddressKey.values, stringValue),
AutodiscoverErrorCode: (stringValue) =>
EnumToString.fromString(AutodiscoverErrorCode.values, stringValue),
UserSettingName: (stringValue) =>
EnumToString.fromString(UserSettingName.values, stringValue),
LegacyFreeBusyStatus: (stringValue) =>
EnumToString.fromString(LegacyFreeBusyStatus.values, stringValue),
ContactSource: (stringValue) =>
EnumToString.fromString(ContactSource.values, stringValue),
MemberStatus: (stringValue) =>
EnumToString.fromString(MemberStatus.values, stringValue),
};