copyWith method

Implementation

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