copyWith method
Implementation
ChildCustomContent copyWith(
{dynamic id,
String? status,
String? title,
String? type,
dynamic spaceId}) {
return ChildCustomContent(
id: id ?? this.id,
status: status ?? this.status,
title: title ?? this.title,
type: type ?? this.type,
spaceId: spaceId ?? this.spaceId,
);
}