Issue constructor

Issue({
  1. String? body,
  2. String? closeTime,
  3. String? createTime,
  4. String? etag,
  5. String? name,
  6. String? state,
  7. String? title,
  8. String? updateTime,
})

Implementation

Issue({
  this.body,
  this.closeTime,
  this.createTime,
  this.etag,
  this.name,
  this.state,
  this.title,
  this.updateTime,
});