Latin6Codec constructor

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

Creates a new Latin6Codec

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

Implementation

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