GbkCodec class

A GbkCodec encodes strings to GBK code units (bytes) and decodes GBK code units to strings.

Inheritance

Constructors

GbkCodec({bool allowMalformed = false})
Instantiates a new GbkCodec.
const

Properties

decoder GbkDecoder
Returns the decoder of this, converting from List<int> to String.
no setteroverride
encoder GbkEncoder
Returns the encoder from String to List<int>.
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
inverted Codec<List<int>, String>
Inverts this.
no setterinherited
name String
The name of this codec, 'gbk'.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

decode(List<int> codeUnits, {bool? allowMalformed}) String
Decodes the UTF-8 codeUnits (a list of unsigned 8-bit integers) to the corresponding string.
override
decodeStream(Stream<List<int>> byteStream) Future<String>
inherited
encode(String input) List<int>
Encodes input.
inherited
fuse<R>(Codec<List<int>, R> other) Codec<String, R>
Fuses this with other.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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