$VideoListEntityFromJson function

VideoListEntity $VideoListEntityFromJson(
  1. Map<String, dynamic> json
)

Implementation

VideoListEntity $VideoListEntityFromJson(Map<String, dynamic> json) {
	final VideoListEntity videoListEntity = VideoListEntity();
	final List<VideoListBean>? list = jsonConvert.convertListNotNull<VideoListBean>(json['list']);
	if (list != null) {
		videoListEntity.list = list;
	}
	return videoListEntity;
}