IssuePickerSuggestionsIssueType constructor

IssuePickerSuggestionsIssueType({
  1. String? id,
  2. List<SuggestedIssue>? issues,
  3. String? label,
  4. String? msg,
  5. String? sub,
})

Implementation

IssuePickerSuggestionsIssueType(
    {this.id, List<SuggestedIssue>? issues, this.label, this.msg, this.sub})
    : issues = issues ?? [];