Issue constructor

const Issue({
  1. required String title,
  2. String? description,
  3. String url = '',
  4. int number = 0,
})

Implementation

const Issue({
  required this.title,
  this.description,
  this.url = '',
  this.number = 0,
});