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