ThemedIconButton constructor

const ThemedIconButton(
  1. IconData? icon, {
  2. Key? key,
  3. ThemeGroupType type = ThemeGroupType.MOM,
  4. IconSize iconSize = IconSize.SMALL,
  5. String? semanticLabel,
  6. TextDirection? textDirection,
  7. VoidCallback? onPressedCallback,
  8. Emphasis emphasis = Emphasis.NONE,
})

Implementation

const ThemedIconButton(
  this.icon,
    {
      super.key,
      this.type  = ThemeGroupType.MOM,
      this.iconSize = IconSize.SMALL,
      this.semanticLabel,
      this.textDirection,
      this.onPressedCallback,
      this.emphasis = Emphasis.NONE
    }
);