copyWith method

CreatedIssue copyWith({
  1. String? id,
  2. String? key,
  3. String? self,
  4. NestedResponse? transition,
  5. NestedResponse? watchers,
})

Implementation

CreatedIssue copyWith(
    {String? id,
    String? key,
    String? self,
    NestedResponse? transition,
    NestedResponse? watchers}) {
  return CreatedIssue(
    id: id ?? this.id,
    key: key ?? this.key,
    self: self ?? this.self,
    transition: transition ?? this.transition,
    watchers: watchers ?? this.watchers,
  );
}