copyWith method
Implementation
ContentProperty copyWith(
{dynamic id, String? key, dynamic value, Version? version}) {
return ContentProperty(
id: id ?? this.id,
key: key ?? this.key,
value: value ?? this.value,
version: version ?? this.version,
);
}