copyWith method

RemoteIssueLink copyWith({
  1. Application? application,
  2. String? globalId,
  3. int? id,
  4. RemoteObject? object,
  5. String? relationship,
  6. 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,
  );
}