ContentIdToContentTypeRequest.fromJson constructor
Implementation
factory ContentIdToContentTypeRequest.fromJson(Map<String, Object?> json) {
return ContentIdToContentTypeRequest(
contentIds:
(json[r'contentIds'] as List<Object?>?)?.map((i) => i).toList() ?? [],
);
}