Latin13Codec constructor

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

Creates a new Latin13Codec

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

Implementation

const Latin13Codec({
  this.allowInvalid = false,
});