copyWith method
Implementation
LinkedIssue copyWith(
{Fields? fields, String? id, String? key, String? self}) {
return LinkedIssue(
fields: fields ?? this.fields,
id: id ?? this.id,
key: key ?? this.key,
self: self ?? this.self,
);
}