SmartIconButton constructor

const SmartIconButton({
  1. SmartIconData? icon,
  2. Key? key,
  3. bool stroke = false,
  4. SmartIconButtonSize size = SmartIconButtonSize.m,
  5. VoidCallback? onPressed,
  6. Color? surface,
  7. IconData? iconData,
})

Implementation

const SmartIconButton({
  this.icon,
  super.key,
  this.stroke = false,
  this.size = SmartIconButtonSize.m,
  this.onPressed,
  this.surface,
  this.iconData,
});