SolidAppBarAction constructor

const SolidAppBarAction({
  1. required IconData icon,
  2. required VoidCallback onPressed,
  3. String? tooltip,
  4. Color? color,
  5. bool hideOnNarrowScreen = false,
  6. bool hideOnVeryNarrowScreen = false,
})

Implementation

const SolidAppBarAction({
  required this.icon,
  required this.onPressed,
  this.tooltip,
  this.color,
  this.hideOnNarrowScreen = false,
  this.hideOnVeryNarrowScreen = false,
});