IconButtonView constructor

const IconButtonView({
  1. Key? key,
  2. required IconData icon,
  3. bool showBackgroundColor = true,
  4. Color iconColor = Colors.white,
  5. Future onTap()?,
})

Implementation

const IconButtonView({
  super.key,
  required this.icon,
  this.showBackgroundColor = true,
  this.iconColor = Colors.white,
  this.onTap,
});