copyWith method

CustomFieldContextDefaultValueProject copyWith({
  1. String? contextId,
  2. String? projectId,
  3. String? type,
})

Implementation

CustomFieldContextDefaultValueProject copyWith(
    {String? contextId, String? projectId, String? type}) {
  return CustomFieldContextDefaultValueProject(
    contextId: contextId ?? this.contextId,
    projectId: projectId ?? this.projectId,
    type: type ?? this.type,
  );
}