Serializer class abstract

Serializer interface for the serialization of value related objects.

Implementers

Constructors

Serializer()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toByteArrayStream(ByteSink out) → void
Writes the current object to the output stream.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromByteArray(List<int> buf) Serializer
Convenience Class to deserialize using byte array. @param buf the byte array to deserialize @return Serializer
fromByteArrayStream(ByteStream in_) Serializer
Dummy static serializer.
toByteArray(Serializer obj) Future<List<int>>
Convenience class to serialize to a bytearray. @param obj the object to serialize @return byteArray representing the object

Constants

serialversionUID → const int