File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/video_player/video_player_platform_interface/lib Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ abstract class VideoPlayerPlatform extends PlatformInterface {
100100 throw UnimplementedError ('getPosition() has not been implemented.' );
101101 }
102102
103- /// Returns a widget displaying the video with a given playerID .
103+ /// Returns a widget displaying the video with a given playerId .
104104 @Deprecated ('Use buildViewWithOptions() instead.' )
105105 Widget buildView (int playerId) {
106106 throw UnimplementedError ('buildView() has not been implemented.' );
@@ -112,12 +112,12 @@ abstract class VideoPlayerPlatform extends PlatformInterface {
112112 return buildView (options.playerId);
113113 }
114114
115- /// Sets the audio mode to mix with other sources
115+ /// Sets the audio mode to mix with other sources.
116116 Future <void > setMixWithOthers (bool mixWithOthers) {
117117 throw UnimplementedError ('setMixWithOthers() has not been implemented.' );
118118 }
119119
120- /// Sets additional options on web
120+ /// Sets additional options on web.
121121 Future <void > setWebOptions (int playerId, VideoPlayerWebOptions options) {
122122 throw UnimplementedError ('setWebOptions() has not been implemented.' );
123123 }
You can’t perform that action at this time.
0 commit comments