Latin16Decoder constructor

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

Creates a new Latin16Decoder

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

Implementation

const Latin16Decoder({
  bool allowInvalid = false,
}) : super(_latin16Symbols, allowInvalid: allowInvalid);