BarcodeMetadata constructor

BarcodeMetadata(
  1. int _columnCount,
  2. int _rowCountUpperPart,
  3. int _rowCountLowerPart,
  4. int _errorCorrectionLevel,
)

Implementation

BarcodeMetadata(
  this._columnCount,
  this._rowCountUpperPart,
  this._rowCountLowerPart,
  this._errorCorrectionLevel,
) : _rowCount = _rowCountUpperPart + _rowCountLowerPart;