Issue constructor

Issue({
  1. required String title,
  2. String? body,
  3. String? milestone,
  4. String? labels,
  5. String? assignee,
  6. List<String> assignees = const [],
  7. String? actualBehaviour,
  8. String? expectedBehaviour,
})

Implementation

Issue({
  required this.title,
  this.body,
  this.milestone,
  this.labels,
  this.assignee,
  this.assignees = const [],
  this.actualBehaviour,
  this.expectedBehaviour,
});