copyWith method
ContentBodyCreateStorage
copyWith({
- String? value,
- ContentBodyCreateStorageRepresentation? representation,
Implementation
ContentBodyCreateStorage copyWith(
{String? value, ContentBodyCreateStorageRepresentation? representation}) {
return ContentBodyCreateStorage(
value: value ?? this.value,
representation: representation ?? this.representation,
);
}