This is a lightweight⚡ package to fetch video info for YouTube from the url
flutter:
sdk: flutter
youtube_video_info: ^1.0.0
and then run flutter pub get
Import the library
import 'package:youtube_video_info/youtube.dart';
YoutubeDataModel videoData = await YoutubeData.getData(link);
var title = videoData.title; // "Ed Sheeran - Bad Habits [Official Video]"
var averageRating = videoData.averageRating; // 4.13242
var durationSeconds = videoData.durationSeconds; // 167