youtube_explode/lib/src/models/channel.dart

15 lines
306 B
Dart

/// 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);
}