ScaffoldActionButton constructor

const ScaffoldActionButton({
  1. Key? key,
  2. required IconData icon,
  3. String? tooltip,
  4. VoidCallback? onPressed,
  5. double? iconSize,
  6. Color? color,
  7. bool isTablet = false,
})

Implementation

const ScaffoldActionButton({
  super.key,
  required this.icon,
  this.tooltip,
  this.onPressed,
  this.iconSize,
  this.color,
  this.isTablet = false,
});