ScanModule constructor

ScanModule({
  1. String? label,
  2. Color color = Colors.transparent,
  3. int validateCountCorrelation = 5,
  4. double distanceCorrelation = 0,
})

Implementation

ScanModule({
  this.label,
  this.color = Colors.transparent,
  this.validateCountCorrelation = 5,
  this.distanceCorrelation = 0,
}) {
  assert(validateCountCorrelation > 0);
}