Latin1Decoder constructor

const Latin1Decoder(
  1. {bool allowInvalid = false}
)

Instantiates a new Latin1Decoder.

The optional allowInvalid argument defines how convert deals with invalid bytes.

If it is true, convert replaces invalid bytes with the Unicode Replacement character U+FFFD (�). Otherwise it throws a FormatException.

Implementation

const Latin1Decoder({bool allowInvalid = false})
    : super(allowInvalid, _latin1Mask);

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-convert/Latin1Decoder/Latin1Decoder.html