ChildCustomContent.fromJson constructor

ChildCustomContent.fromJson(
  1. Map<String, Object?> json
)

Implementation

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