copyWith method

ContentBlueprintDraftVersion copyWith({
  1. int? number,
})

Implementation

ContentBlueprintDraftVersion copyWith({int? number}) {
  return ContentBlueprintDraftVersion(
    number: number ?? this.number,
  );
}