MiniFAB constructor

const MiniFAB({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. required IconData icon,
  4. double iconSize = 24,
  5. Color? iconColor = Colors.white,
})

Implementation

const MiniFAB({
  super.key,
  required this.onPressed,
  required this.icon,
  this.iconSize = 24,
  this.iconColor = Colors.white,
});