MSIBarcodeConfig.setLengthRange constructor

MSIBarcodeConfig.setLengthRange(
  1. {bool? enabled,
  2. required dynamic minLength,
  3. required dynamic maxLength,
  4. MsiChecksumType? checksum}
)

Implementation

MSIBarcodeConfig.setLengthRange(
    {this.enabled, required minLength, required maxLength, this.checksum})
    : _minLength = minLength,
      _maxLength = maxLength;