serialize method
Iterable<Object?>
serialize(
- Serializers serializers,
- TraitMap 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,
TraitMap object, {
FullType specifiedType = FullType.unspecified,
}) sync* {
for (final entry in object.entries) {
yield entry.key.absoluteName;
yield entry.value.toJson();
}
}