DatamatrixBarcodeConfig.setLengthRange constructor

DatamatrixBarcodeConfig.setLengthRange({
  1. bool? enabled,
  2. required dynamic minLength,
  3. required dynamic maxLength,
})

Implementation

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