executeChannel method

void executeChannel(
  1. MediaItem item
)

Goes to Channel page for a YouTube video.

Implementation

void executeChannel(MediaItem item) async {
  await PlayerYoutubeSource.instance.showChannelPage(
    appModel: appModel,
    context: context,
    item: item,
  );
}