PreferenceWorkflow constructor

PreferenceWorkflow({
  1. required String id,
  2. required String identifier,
  3. required String name,
  4. required bool critical,
  5. List<String>? tags,
})

Implementation

PreferenceWorkflow({
  required this.id,
  required this.identifier,
  required this.name,
  required this.critical,
  this.tags,
});