copyWith method

IssueContextVariable copyWith({
  1. int? id,
  2. String? key,
  3. String? type,
})

Implementation

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