AppBarButtonIcon constructor

const AppBarButtonIcon({
  1. Key? key,
  2. Color? color,
  3. Icon? icon,
  4. required Function onPressed,
  5. 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)
});