copyWith method
IssueLink
copyWith({
- String? id,
- LinkedIssue? inwardIssue,
- LinkedIssue? outwardIssue,
- String? self,
- IssueLinkType? type,
Implementation
IssueLink copyWith(
{String? id,
LinkedIssue? inwardIssue,
LinkedIssue? outwardIssue,
String? self,
IssueLinkType? type}) {
return IssueLink(
id: id ?? this.id,
inwardIssue: inwardIssue ?? this.inwardIssue,
outwardIssue: outwardIssue ?? this.outwardIssue,
self: self ?? this.self,
type: type ?? this.type,
);
}