ScanTextOptions constructor

ScanTextOptions({
  1. Color? textColor = Colors.black,
  2. double? textSize = 35.0,
  3. bool? showText = true,
  4. bool? showTextOutBounds = false,
  5. Color? textBackgroundColor = Colors.transparent,
  6. bool? autoSizeText = false,
  7. int? minTextSize = 24,
  8. int? granularity = 2,
})

Implementation

ScanTextOptions({
  this.textColor = Colors.black,
  this.textSize = 35.0,
  this.showText = true,
  this.showTextOutBounds = false,
  this.textBackgroundColor = Colors.transparent,
  this.autoSizeText = false,
  this.minTextSize = 24,
  this.granularity = 2,
});