Fix container.toString

This commit is contained in:
Mattia 2020-07-21 11:40:30 +02:00
parent 26adb5a1e4
commit 85c09a7ad4
4 changed files with 6 additions and 3 deletions

View File

@ -35,4 +35,7 @@ class Container with EquatableMixin {
@override
List<Object> get props => [name];
@override
String toString() => name;
}

View File

@ -61,5 +61,5 @@ class MuxedStreamInfo implements AudioStreamInfo, VideoStreamInfo {
this.framerate);
@override
String toString() => 'Muxed ($tag | $videoQualityLabel | $container';
String toString() => 'Muxed ($tag | $videoQualityLabel | $container)';
}

View File

@ -52,5 +52,5 @@ class VideoOnlyStreamInfo implements VideoStreamInfo {
this.framerate);
@override
String toString() => 'Video-only ($tag | $videoQualityLabel | $container';
String toString() => 'Video-only ($tag | $videoQualityLabel | $container)';
}

View File

@ -1,6 +1,6 @@
name: youtube_explode_dart
description: A port in dart of the youtube explode library. Supports several API functions without the need of Youtube API Key.
version: 1.4.1+1
version: 1.4.1+2
homepage: https://github.com/Hexer10/youtube_explode_dart
environment: