copyWith method
Implementation
IssueContextVariable copyWith({int? id, String? key, String? type}) {
return IssueContextVariable(
id: id ?? this.id,
key: key ?? this.key,
type: type ?? this.type,
);
}
IssueContextVariable copyWith({int? id, String? key, String? type}) {
return IssueContextVariable(
id: id ?? this.id,
key: key ?? this.key,
type: type ?? this.type,
);
}