setPropertyFromComplexMap method
void
setPropertyFromComplexMap(
- String property,
- Map? mapObject,
- IValueMarshallerFunction keyMarshaller,
- IValueMarshallerFunction valueMarshaller,
Sets property from complex map.
Implementation
void setPropertyFromComplexMap(String property, Map? mapObject, IValueMarshallerFunction keyMarshaller, IValueMarshallerFunction valueMarshaller)
{
if (mapObject != null) {
setPropertyUnsafe(property, marshalComplexMap(mapObject, keyMarshaller, valueMarshaller).getRawValue() );
}
else {
removeProperty(property);
}
}