Latin1Codec class final
A Latin1Codec encodes strings to ISO Latin-1 (aka ISO-8859-1) bytes and decodes Latin-1 bytes to strings.
Constructors
- Latin1Codec({bool allowInvalid = false})
-
Instantiates a new Latin1Codec.
const
Properties
- decoder → Latin1Decoder
-
Returns the decoder of
this
, converting fromList<int>
toString
.read-onlyoverride - encoder → Latin1Encoder
-
Returns the encoder from
String
toList<int>
.read-onlyoverride - hashCode → int
-
The hash code for this object.
read-onlyinherited
-
inverted
→ Codec<
List< int> , String> -
Inverts
this
.read-onlyinherited - name → String
-
The name of this codec, "iso-8859-1".
read-onlyoverride
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
Methods
-
decode(
List< int> bytes, {bool? allowInvalid}) → String -
Decodes the Latin-1
bytes
(a list of unsigned 8-bit integers) to the corresponding string.override -
decodeStream(
Stream< List< byteStream) → Future<int> >String> -
inherited
-
encode(
String source) → Uint8List -
Encodes
input
.override -
fuse<
R> (Codec< List< other) → Codec<int> , R>String, R> -
Fuses
this
withother
.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