ConvertToValueWithStringValue static method
Implementation
static Object? ConvertToValueWithStringValue(
MapiPropertyType? mapiPropType, String? stringValue) {
if (!MapiTypeConverterMap.Member!.containsKey(mapiPropType)) {
throw UnsupportedError(
"!!! ConvertToValueWithStringValue($mapiPropType)");
}
return MapiTypeConverterMap.Member![mapiPropType!]!
.ConvertToValue(stringValue);
}