Latin10Codec constructor

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

Creates a new Latin10Codec

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

Implementation

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