convertFromPrimitiveValue abstract method

dynamic convertFromPrimitiveValue(
  1. dynamic value
)

Converts a value to a more complex value from a primitive value according to this instance's definition.

This method takes a non-Dart representation of a value (e.g. an HTTP body or database query) and turns it into a Dart representation . How this value is computed depends on this instance's definition.

Implementation

dynamic convertFromPrimitiveValue(dynamic value);