fetchVideo static method
Implementation
static List<UserVideo> fetchVideo() {
List<UserVideo> list = videoList
.map((e) => UserVideo(
image: '', url: 'https://static.ybhospital.net/$e', desc: '$e'))
.toList();
return list;
}