DecoderResult constructor

DecoderResult(
  1. Uint8List? _rawBytes,
  2. String _text,
  3. List<Uint8List>? _byteSegments,
  4. String? _ecLevel, {
  5. dynamic saSequence = -1,
  6. dynamic saParity = -1,
  7. dynamic symbologyModifier = 0,
})

Implementation

DecoderResult(
  this._rawBytes,
  this._text,
  this._byteSegments,
  this._ecLevel, {
  saSequence = -1,
  saParity = -1,
  symbologyModifier = 0,
})  : _structuredAppendSequenceNumber = saSequence,
      _structuredAppendParity = saParity,
      _symbologyModifier = symbologyModifier,
      numBits = _rawBytes == null ? 0 : 8 * _rawBytes.length;