RegulatoryTask constructor

RegulatoryTask({
  1. required String id,
  2. required String title,
  3. required String description,
  4. List<String> resources = const [],
  5. List<String> dependsOn = const [],
  6. bool isCompleted = false,
})

Implementation

RegulatoryTask({
  required this.id,
  required this.title,
  required this.description,
  this.resources = const [],
  this.dependsOn = const [],
  this.isCompleted = false,
});