copyWith method
LinkIssueRequestJsonBean
copyWith({
- Comment? comment,
- LinkedIssue? inwardIssue,
- LinkedIssue? outwardIssue,
- 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,
);
}