copyWith method
Implementation
LabeledContent copyWith(
{String? contentType, int? contentId, String? title}) {
return LabeledContent(
contentType: contentType ?? this.contentType,
contentId: contentId ?? this.contentId,
title: title ?? this.title,
);
}