Serializer class

Inheritance

Constructors

Serializer()

Properties

chunk → Uint8List
no setterinherited
hashCode → int
The hash code for this object.
no setterinherited
hole → Object
no setterinherited
nextId ↔ int
ID of the next serialized object.
getter/setter pairinherited
nul → Object
no setterinherited
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
stringWriteBuffer ↔ List<int>?
Temporary char buffer for string writing.
getter/setter pairinherited
undefined → Object
no setterinherited
writer → BinaryWriter
finalinherited

Methods

assignId(Object object) → void
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
reset() → void
inherited
toString() → String
A string representation of this object.
inherited
writeDouble(double value) → void
inherited
writeHeader() → void
Writes out a header, which includes the format version.
inherited
writeInt(int value) → void
inherited
writeString(String value) → void
Write {@link String} string to the buffer
inherited
writeTag(int tag) → void
inherited
writeValue(dynamic value) → bool
Serializes a JavaScript delegate object into the buffer.
override

Operators

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

Static Methods

defaultSerializer() → Serializer