CircleCameraButton constructor

const CircleCameraButton({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. double radius = 35.0,
  4. Color iconColor = Colors.white,
  5. Color backgroundColor = Colors.black,
  6. double padding = 5.0,
  7. bool isEnabled = true,
})

Implementation

const CircleCameraButton(
    {super.key,
    required this.onPressed,
    this.radius = 35.0,
    this.iconColor = Colors.white,
    this.backgroundColor = Colors.black,
    this.padding = 5.0,
    this.isEnabled = true});