copyWith method
Implementation
ContentCreateSpaceMetadata copyWith(
{LabelArray? labels, Map<String, dynamic>? expandable}) {
return ContentCreateSpaceMetadata(
labels: labels ?? this.labels,
expandable: expandable ?? this.expandable,
);
}