deserialize abstract method
T
deserialize(
- Serializers serializers,
- Iterable<
Object?> serialized, { - FullType specifiedType = FullType.unspecified,
Deserializes serialized
.
serialized
is an Iterable that may contain booleans, integers,
doubles, Strings and/or Iterables.
Use serializers
as needed for nested deserialization. Information about
the type being deserialized is provided in specifiedType
.
Implementation
T deserialize(Serializers serializers, Iterable<Object?> serialized,
{FullType specifiedType = FullType.unspecified});