getByVideo method
Gets the metadata associated with the channel that uploaded the specified video.
Implementation
Future<Channel> getByVideo(dynamic videoId) async {
videoId = VideoId.fromString(videoId);
var videoInfoResponse = await WatchPage.get(_httpClient, videoId.value);
var playerResponse = videoInfoResponse.playerResponse!;
var channelId = playerResponse.videoChannelId;
return get(ChannelId(channelId));
}