StandardMessageCodec class

MessageCodec using the Flutter standard binary encoding.

Supported messages are acyclic values of these forms:

Decoded values will use List<dynamic> and Map<dynamic, dynamic> irrespective of content.

On Android, messages are represented as follows:

On iOS, messages are represented as follows:

The codec is extensible by subclasses overriding writeValue and readValueOfType.

Implemented types

Constructors

StandardMessageCodec()
Creates a MessageCodec using the Flutter standard binary encoding.
const

Properties

hashCode int
The hash code for this object. [...]
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

decodeMessage(ByteData message) → dynamic
Decodes the specified message from binary. [...]
override
encodeMessage(dynamic message) ByteData
Encodes the specified message in binary. [...]
override
readSize(ReadBuffer buffer) int
Reads a non-negative int from buffer as written by writeSize. [...]
readValue(ReadBuffer buffer) → dynamic
Reads a value from buffer as written by writeValue. [...]
readValueOfType(int type, ReadBuffer buffer) → dynamic
Reads a value of the indicated type from buffer. [...]
writeSize(WriteBuffer buffer, int value) → void
Writes a non-negative 32-bit integer value to buffer using an expanding 1-5 byte encoding that optimizes for small values. [...]
writeValue(WriteBuffer buffer, dynamic value) → void
Writes value to buffer by first writing a type discriminator byte, then the value itself. [...]
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
toString() String
Returns a string representation of this object.
inherited

Operators

operator ==(dynamic other) bool
The equality operator. [...]
inherited