copyWith method

ContentBlueprintDraftSpace copyWith({
  1. String? key,
})

Implementation

ContentBlueprintDraftSpace copyWith({String? key}) {
  return ContentBlueprintDraftSpace(
    key: key ?? this.key,
  );
}