copyWith method
CreatedIssue
copyWith({
- String? id,
- String? key,
- String? self,
- NestedResponse? transition,
- 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,
);
}