ConfirmOutlinedButton constructor

const ConfirmOutlinedButton({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. required Icon icon,
})

Implementation

const ConfirmOutlinedButton({
  super.key,
  required this.onPressed,
  required this.icon,
});