removeChannleImage method
Implementation
Future<void> removeChannleImage({
required bool hidenChannelImage,
}) async {
if (hidenChannelImage) {
await controller.evaluateJavascript(
source: """
document.querySelector('.ytp-title-channel').style.display = 'none';
""",
);
}
}