copyWith method
RemoteIssueLink
copyWith({
- Application? application,
- String? globalId,
- int? id,
- RemoteObject? object,
- String? relationship,
- String? self,
Implementation
RemoteIssueLink copyWith(
{Application? application,
String? globalId,
int? id,
RemoteObject? object,
String? relationship,
String? self}) {
return RemoteIssueLink(
application: application ?? this.application,
globalId: globalId ?? this.globalId,
id: id ?? this.id,
object: object ?? this.object,
relationship: relationship ?? this.relationship,
self: self ?? this.self,
);
}