Skip to content

Commit

Permalink
Remove unneeded async suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
krocard committed Oct 24, 2023
1 parent 4af2290 commit 69c6b2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/player.dart
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ class Player with PlayerEventHandler implements PlayerApi {
Future<bool> get isCasting => _invokeMethod(Methods.isCasting);

@override
Future<void> castVideo() async => _invokeMethod<void>(Methods.castVideo);
Future<void> castVideo() => _invokeMethod<void>(Methods.castVideo);

@override
Future<void> castStop() => _invokeMethod<void>(Methods.castStop);
Expand Down

0 comments on commit 69c6b2a

Please sign in to comment.