JidoujishoIconButton constructor

const JidoujishoIconButton(
  1. {required IconData icon,
  2. required String tooltip,
  3. FutureOr<void> onTap(
      )?,
    1. FutureOr<void> onTapDown(
      1. TapDownDetails
      )?,
    2. bool busy = false,
    3. bool enabled = true,
    4. double? size,
    5. ShapeBorder shapeBorder = const CircleBorder(),
    6. Color? backgroundColor,
    7. Color? enabledColor,
    8. Color? disabledColor,
    9. BoxConstraints? constraints,
    10. EdgeInsets? padding,
    11. bool isWideTapArea = false,
    12. Key? key}
    )

    Creates a busy icon button. Default values rely on IconTheme.

    Implementation

    const JidoujishoIconButton({
      required this.icon,
      required this.tooltip,
      this.onTap,
      this.onTapDown,
      this.busy = false,
      this.enabled = true,
      this.size,
      this.shapeBorder = const CircleBorder(),
      this.backgroundColor,
      this.enabledColor,
      this.disabledColor,
      this.constraints,
      this.padding,
      this.isWideTapArea = false,
      super.key,
    });