ScannerTheme constructor

ScannerTheme({
  1. required Color primaryColor,
  2. Color overlayColor = const Color(0x88000000),
  3. double scanAreaWidth = 260,
  4. double scanAreaHeight = 260,
  5. double cornerSize = 40,
})

Implementation

ScannerTheme({
  required this.primaryColor,
  this.overlayColor = const Color(0x88000000),
  this.scanAreaWidth = 260,
  this.scanAreaHeight = 260,
  this.cornerSize = 40,
});