InsightCard constructor

const InsightCard({
  1. Key? key,
  2. required Insight insight,
  3. VoidCallback? onActionTap,
  4. VoidCallback? onNodeTap,
})

Implementation

const InsightCard({
  super.key,
  required this.insight,
  this.onActionTap,
  this.onNodeTap,
});