copyWith method

IssueTypeCreateBean copyWith({
  1. String? description,
  2. int? hierarchyLevel,
  3. String? name,
  4. IssueTypeCreateBeanType? type,
})

Implementation

IssueTypeCreateBean copyWith(
    {String? description,
    int? hierarchyLevel,
    String? name,
    IssueTypeCreateBeanType? type}) {
  return IssueTypeCreateBean(
    description: description ?? this.description,
    hierarchyLevel: hierarchyLevel ?? this.hierarchyLevel,
    name: name ?? this.name,
    type: type ?? this.type,
  );
}