AppIconBtn constructor

const AppIconBtn({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. String? tooltipTxt,
  4. IconData? icon,
})

Implementation

const AppIconBtn({
  super.key,
  required this.onPressed,
  this.tooltipTxt,
  this.icon,
});