copyWith method

CreateCustomFieldContext copyWith({
  1. String? description,
  2. String? id,
  3. List<String>? issueTypeIds,
  4. String? name,
  5. List<String>? projectIds,
})

Implementation

CreateCustomFieldContext copyWith(
    {String? description,
    String? id,
    List<String>? issueTypeIds,
    String? name,
    List<String>? projectIds}) {
  return CreateCustomFieldContext(
    description: description ?? this.description,
    id: id ?? this.id,
    issueTypeIds: issueTypeIds ?? this.issueTypeIds,
    name: name ?? this.name,
    projectIds: projectIds ?? this.projectIds,
  );
}