copyWith method

LinkedIssue copyWith({
  1. Fields? fields,
  2. String? id,
  3. String? key,
  4. String? self,
})

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,
  );
}