ChannelAbout constructor

const ChannelAbout(
  1. String? description,
  2. int? viewCount,
  3. String? joinDate,
  4. String title,
  5. List<Thumbnail> thumbnails,
  6. String? country,
  7. List<ChannelLink> channelLinks,
)

Implementation

const factory ChannelAbout(
  /// Full channel description.
  String? description,

  /// Channel view count.
  int? viewCount,

  /// Channel join date.
  /// Formatted as: Gen 01, 2000
  String? joinDate,

  /// Channel title.
  String title,

  /// Channel thumbnails.
  List<Thumbnail> thumbnails,

  /// Channel country.
  String? country,

  /// Channel links.
  List<ChannelLink> channelLinks,
) = _ChannelAbout;