IssueWidget constructor

const IssueWidget(
  1. Issue issue, {
  2. Key? key,
  3. void onPressed()?,
  4. bool expanded = false,
})

Implementation

const IssueWidget(
  this.issue, {
  super.key,
  this.onPressed,
  this.expanded = false,
});