convertObjectFromNative method
Converts a value to its native representation using the
converter associated with serialType.
Implementation
dynamic convertObjectFromNative(dynamic value, Type serialType) {
return _nativeSerialization.forType(serialType, this).deserialize(value, this);
}