convertObjectFromNative method

dynamic convertObjectFromNative(
  1. dynamic value,
  2. Type serialType
)

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);
}