ActionButton constructor
const
ActionButton({
- Key? key,
- required String text,
- required IconData icon,
- VoidCallback? onPressed,
Implementation
const ActionButton({
Key? key,
required this.text,
required this.icon,
this.onPressed,
}) : super(key: key);