AppBarIcon constructor
const
AppBarIcon({
- Key? key,
- void onPressed()?,
- Color color = Colors.white,
- double size = 24,
- IconData icon = Icons.settings,
- EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
Implementation
const AppBarIcon({
super.key,
this.onPressed,
this.color = Colors.white,
this.size = 24,
this.icon = Icons.settings,
this.padding = const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
});