CodePage850Decoder constructor

const CodePage850Decoder({
  1. bool allowInvalid = false,
})

Creates a new CodePage850Decoder

Set allowInvalid to true for ignoring invalid data. When invalid data is allowed, it will be decoded to �

Implementation

const CodePage850Decoder({
  bool allowInvalid = false,
}) : super(
        _cp850Symbols,
        allowInvalid: allowInvalid,
      );