copyWith method

LinkIssueRequestJsonBean copyWith({
  1. Comment? comment,
  2. LinkedIssue? inwardIssue,
  3. LinkedIssue? outwardIssue,
  4. IssueLinkType? type,
})

Implementation

LinkIssueRequestJsonBean copyWith(
    {Comment? comment,
    LinkedIssue? inwardIssue,
    LinkedIssue? outwardIssue,
    IssueLinkType? type}) {
  return LinkIssueRequestJsonBean(
    comment: comment ?? this.comment,
    inwardIssue: inwardIssue ?? this.inwardIssue,
    outwardIssue: outwardIssue ?? this.outwardIssue,
    type: type ?? this.type,
  );
}