youtube_explode/example/example.dart

14 lines
340 B
Dart

// ignore_for_file: avoid_print
import 'package:youtube_explode_dart/youtube_explode_dart.dart';
Future<void> main() async {
var yt = YoutubeExplode();
var video =
await yt.videos.get('https://www.youtube.com/watch?v=AI7ULzgf8RU');
print('Title: ${video.title}');
// Close the YoutubeExplode's http client.
yt.close();
}