Issue constructor

Issue({
  1. required int number,
  2. required String title,
  3. required String state,
})

Implementation

Issue({
  required this.number,
  required this.title,
  required this.state,
});