buildChannelButton method
- MediaItem item
Channel button for YouTube videos.
Implementation
Widget buildChannelButton(MediaItem item) {
return TextButton(
child: Text(
t.dialog_channel,
),
onPressed: () => executeChannel(item),
);
}