FinderConfiguration constructor

FinderConfiguration({
  1. required BoxDecoration decoration,
  2. Color? backgroundColor,
  3. AspectRatio? finderAspectRatio,
  4. Widget? widget,
  5. Widget? topWidget,
  6. Widget? bottomWidget,
  7. Insets? finderInsets = const Insets(left: 20, right: 20, bottom: 20, top: 20),
  8. OnFinderRectChange? onFinderRectChange,
})

Implementation

FinderConfiguration(
    {required this.decoration,
    this.backgroundColor,
    this.finderAspectRatio,
    this.widget,
    this.topWidget,
    this.bottomWidget,
    this.finderInsets =
        const Insets(left: 20, right: 20, bottom: 20, top: 20),
    this.onFinderRectChange});