Issue constructor

Issue(
  1. Map innerMap, {
  2. int? number,
  3. String? htmlUrl,
  4. String? body,
})

Constructs a new instance of the Issue class.

Implementation

Issue(
  super.innerMap, {
  this.number,
  this.htmlUrl,
  this.body,
});