From 69c6b2ae80bdd5e50591c8acc7a8f8765d56e00c Mon Sep 17 00:00:00 2001 From: Kevin Rocard Date: Tue, 24 Oct 2023 11:15:14 +0200 Subject: [PATCH] Remove unneeded async suffix --- lib/src/player.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/player.dart b/lib/src/player.dart index 043f118e..ca66fdfa 100644 --- a/lib/src/player.dart +++ b/lib/src/player.dart @@ -285,7 +285,7 @@ class Player with PlayerEventHandler implements PlayerApi { Future get isCasting => _invokeMethod(Methods.isCasting); @override - Future castVideo() async => _invokeMethod(Methods.castVideo); + Future castVideo() => _invokeMethod(Methods.castVideo); @override Future castStop() => _invokeMethod(Methods.castStop);