Issue constructor

Issue({
  1. required bool wasPosted,
  2. required String title,
  3. required String body,
  4. required List<String> labels,
})

Implementation

Issue({
  required this.wasPosted,
  required this.title,
  required this.body,
  required this.labels,
});