MiniFAB constructor
const
MiniFAB({
- Key? key,
- required VoidCallback onPressed,
- required IconData icon,
- double iconSize = 24,
- Color? iconColor = Colors.white,
Implementation
const MiniFAB({
super.key,
required this.onPressed,
required this.icon,
this.iconSize = 24,
this.iconColor = Colors.white,
});