Utf8CodecMixin mixin

class MyUtf8Codec with Utf8CodecMixin implements Utf8Codec { 
  // Must override 
  @override 
  Utf8Codec get utf8Codec;
  ...
}
Implemented types

Properties

decoder Utf8Decoder
Returns the decoder of this, converting from List<int> to String.
no setteroverride
encoder Utf8Encoder
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 is "utf-8".
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
utf8Codec Utf8Codec
no setter

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 string) Uint8List
Encodes the string as UTF-8.
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