CustomRoundedButton constructor

const CustomRoundedButton({
  1. Key? key,
  2. required String buttonText,
  3. required VoidCallback onPressed,
  4. required bool disabled,
  5. bool iconEnabled = false,
  6. IconData icon = Icons.camera_alt_outlined,
})

Implementation

const CustomRoundedButton(
    {super.key,
    required this.buttonText,
    required this.onPressed,
    required this.disabled,
    this.iconEnabled = false,
    this.icon = Icons.camera_alt_outlined});