Risk constructor

Risk({
  1. required String id,
  2. required String description,
  3. required String title,
  4. required int score,
})

Implementation

Risk({
  required this.id,
  required this.description,
  required this.title,
  required this.score,
});