correctedData property

Logic? correctedData
latefinal

The originalData with any possible corrections applied.

If uncorrectableError, then this data is unreliable. If this does not supportsErrorCorrection, then this will be null and the port won't exist.

Implementation

late final Logic? correctedData =
    supportsErrorCorrection ? output('corrected_data') : null;