main function

void main()

Implementation

void main() async{
  WidgetsFlutterBinding.ensureInitialized();
  FetchAllVideos ob =  FetchAllVideos();
  List videos = await ob.getAllVideos();
  print("videos.lenght ${videos.length}");

}