youtube_explode/lib/src/models/channel.dart

15 lines
306 B
Dart
Raw Normal View History

2020-02-20 22:13:51 +01:00
/// Information about a YouTube channel.
class Channel {
/// ID of this channel.
final String id;
/// Title of this channel.
final String title;
/// Logo image URL of this channel.
final Uri logoUrl;
/// Initializes an instance of [Channel]
Channel(this.id, this.title, this.logoUrl);
}