serialize method
Iterable<Object?>
serialize(
- Serializers serializers,
- ShapeMap object, {
- FullType specifiedType = FullType.unspecified,
override
Serializes object
.
Use serializers
as needed for nested serialization. Information about
the type being serialized is provided in specifiedType
.
Returns an Iterable of values that can be represented as structured JSON: booleans, integers, doubles, Strings and Iterables.
TODO(davidmorgan): document the wire format.
Implementation
@override
Iterable<Object?> serialize(
Serializers serializers,
ShapeMap object, {
FullType specifiedType = FullType.unspecified,
}) sync* {
for (final entry in object.entries) {
yield entry.key.absoluteName;
yield serializers.serializeWith(Shape.serializer, entry.value);
}
}