ChildCustomContent.fromJson constructor
Implementation
factory ChildCustomContent.fromJson(Map<String, Object?> json) {
return ChildCustomContent(
id: json[r'id'] as String?,
status: json[r'status'] as String?,
title: json[r'title'] as String?,
type: json[r'type'] as String?,
spaceId: json[r'spaceId'] as String?,
);
}