AurisScanBracket constructor

const AurisScanBracket({
  1. Key? key,
  2. required Widget child,
  3. Color? color,
  4. double bracketLength = 14,
  5. double strokeWidth = 2,
  6. EdgeInsetsGeometry padding = const EdgeInsets.all(6),
  7. bool pulse = false,
})

Creates a scan-bracket frame around child.

Implementation

const AurisScanBracket({
  super.key,
  required this.child,
  this.color,
  this.bracketLength = 14,
  this.strokeWidth = 2,
  this.padding = const EdgeInsets.all(6),
  this.pulse = false,
});