BarcodeConfigWithLength.setLengthRange constructor

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

Implementation

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