$VideoEntityFromJson function

VideoEntity $VideoEntityFromJson(
  1. Map<String, dynamic> json
)

Implementation

VideoEntity $VideoEntityFromJson(Map<String, dynamic> json) {
	final VideoEntity videoEntity = VideoEntity();
	final List<VideoBean>? playInfoList = jsonConvert.convertListNotNull<VideoBean>(json['playInfoList']);
	if (playInfoList != null) {
		videoEntity.playInfoList = playInfoList;
	}
	return videoEntity;
}