Windows1251Codec class

A Windows1251Codec encodes strings to Windows-1251 code units (bytes) and decodes Windows-1251 code units to strings.

Inheritance

Constructors

Windows1251Codec({bool allowInvalid = false})
Instantiates a new Windows1251Codec.
const

Properties

allowInvalid bool
final
decoder Windows1251Decoder
Returns the decoder of this, converting from List<int> to String.
no setteroverride
encoder Windows1251Encoder
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, 'windows1251'.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

decode(List<int> encoded, {bool? allowInvalid}) String
Decodes encoded data.
override
decodeStream(Stream<List<int>> byteStream) Future<String>
inherited
encode(String input, {bool? allowInvalid}) Uint8List
Encodes input.
override
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