ActionIconTheme constructor

const ActionIconTheme(
  1. {Key? key,
  2. required ActionIconThemeData data,
  3. required Widget child}
)

Creates a theme that overrides the default icon of BackButtonIcon, CloseButtonIcon, DrawerButtonIcon, and EndDrawerButtonIcon in this widget's subtree.

Implementation

const ActionIconTheme({
  super.key,
  required this.data,
  required super.child,
});