AppBarButtonIcon constructor
const
AppBarButtonIcon({
- Key? key,
- Color? color,
- Icon? icon,
- required Function onPressed,
- EdgeInsets padding = const EdgeInsets.fromLTRB(16, 8, 16, 8),
Implementation
const AppBarButtonIcon({
super.key,
this.color,
this.icon,
required this.onPressed,
this.padding = const EdgeInsets.fromLTRB(16, 8, 16, 8)
});