DSIconButton constructor

const DSIconButton({
  1. required IconData icon,
  2. required VoidCallback onPressed,
  3. Color? color,
  4. double? size,
  5. Color? backgroundColor,
  6. double? borderRadius,
  7. EdgeInsetsGeometry? padding,
  8. Key? key,
})

Implementation

const DSIconButton({
  required this.icon,
  required this.onPressed,
  this.color,
  this.size,
  this.backgroundColor,
  this.borderRadius,
  this.padding,
  super.key,
});