FlowCard constructor
const
FlowCard({
- Key? key,
- required String icon,
- required String title,
- required String description,
- required VoidCallback onTap,
Implementation
const FlowCard({
super.key,
required this.icon,
required this.title,
required this.description,
required this.onTap,
});