IconOutlineButton constructor

const IconOutlineButton({
  1. required IconData icon,
  2. Color? color = FUIColors.white,
  3. void onTap()?,
  4. Key? key,
})

Implementation

const IconOutlineButton({
  required this.icon,
  this.color = FUIColors.white,
  this.onTap,
  super.key,
});