Insight constructor
- required String id,
- required InsightType type,
- required String title,
- required ElectricalNode node,
- required String description,
- required String suggestion,
- String? action,
- required InsightPriority priority,
Implementation
const Insight({
required this.id,
required this.type,
required this.title,
required this.node,
required this.description,
required this.suggestion,
this.action,
required this.priority,
});