copyWith method
Implementation
LabelDetails copyWith(
{Label? label, LabeledContentPageResponse? associatedContents}) {
return LabelDetails(
label: label ?? this.label,
associatedContents: associatedContents ?? this.associatedContents,
);
}