Entry constructor

Entry({
  1. int? issueId,
  2. String? issueKey,
  3. int? status,
  4. List<String>? errors,
})

Implementation

Entry({this.issueId, this.issueKey, this.status, List<String>? errors})
    : errors = errors ?? [];