ViewFinderConfiguration constructor
ViewFinderConfiguration({
- FinderStyle? style,
- ScanbotColor? overlayColor,
- AspectRatio? aspectRatio,
- EdgeInsets? minimumInsets,
- double preferredHeight = -1.0,
- bool visible = true,
Implementation
ViewFinderConfiguration({
FinderStyle? style,
ScanbotColor? overlayColor,
AspectRatio? aspectRatio,
EdgeInsets? minimumInsets,
double preferredHeight = -1.0,
this.visible = true,
}) : super(
style: style,
overlayColor: overlayColor,
aspectRatio: aspectRatio,
minimumInsets: minimumInsets,
preferredHeight: preferredHeight,
);