Latin9Decoder constructor

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

Creates a new Latin9Decoder

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

Implementation

const Latin9Decoder({
  bool allowInvalid = false,
}) : super(_latin9Symbols, allowInvalid: allowInvalid);