CameraScreen constructor

const CameraScreen({
  1. required Widget appbartitle,
  2. double? titleSpacing,
  3. Color loaderColor = Colors.blue,
  4. Color? selectedColor,
  5. Color? unselectedColor,
  6. Color? optionColor,
  7. Color? controlsBackgroundColor,
  8. double? controlButtonsBottomPadding,
  9. Key? key,
})

Implementation

const CameraScreen({
  required this.appbartitle,
  this.titleSpacing,
  this.loaderColor = Colors.blue,
  this.selectedColor,
  this.unselectedColor,
  this.optionColor,
  this.controlsBackgroundColor,
  this.controlButtonsBottomPadding,
  Key? key,
}) : super(key: key);