ContentIdToContentTypeResponse.fromJson constructor

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

Implementation

factory ContentIdToContentTypeResponse.fromJson(Map<String, Object?> json) {
  return ContentIdToContentTypeResponse(
    results: json[r'results'] as Map<String, Object?>?,
  );
}