FlowCard constructor

const FlowCard({
  1. Key? key,
  2. required String icon,
  3. required String title,
  4. required String description,
  5. required VoidCallback onTap,
})

Implementation

const FlowCard({
  super.key,
  required this.icon,
  required this.title,
  required this.description,
  required this.onTap,
});