SnapFrameOverlay constructor

const SnapFrameOverlay({
  1. required GreenVideoController? controller,
  2. EdgeInsetsGeometry padding = const EdgeInsets.all(10.0),
  3. Color borderColor = Colors.red,
  4. double borderWidth = 4.0,
  5. double cornerInset = 8.0,
  6. AlignmentGeometry cornerAlignment = Alignment.bottomRight,
  7. double cornerWidth = 200.0,
  8. double? cornerHeight,
  9. Key? key,
})

Implementation

const SnapFrameOverlay({
  required this.controller,
  this.padding = const EdgeInsets.all(10.0),
  this.borderColor = Colors.red,
  this.borderWidth = 4.0,
  this.cornerInset = 8.0,
  this.cornerAlignment = Alignment.bottomRight,
  this.cornerWidth = 200.0,
  this.cornerHeight,
  super.key,
});