create method

BarcodeConfig create({
  1. int? minLength,
  2. int? maxLength,
})

Implementation

BarcodeConfig create({int? minLength, int? maxLength}) => BarcodeConfig(barcodeType: this, minLength: minLength, maxLength: maxLength);