File tree 1 file changed +3
-3
lines changed
packages/video_player/video_player_platform_interface/lib
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 {
100
100
throw UnimplementedError ('getPosition() has not been implemented.' );
101
101
}
102
102
103
- /// Returns a widget displaying the video with a given playerID .
103
+ /// Returns a widget displaying the video with a given playerId .
104
104
@Deprecated ('Use buildViewWithOptions() instead.' )
105
105
Widget buildView (int playerId) {
106
106
throw UnimplementedError ('buildView() has not been implemented.' );
@@ -112,12 +112,12 @@ abstract class VideoPlayerPlatform extends PlatformInterface {
112
112
return buildView (options.playerId);
113
113
}
114
114
115
- /// Sets the audio mode to mix with other sources
115
+ /// Sets the audio mode to mix with other sources.
116
116
Future <void > setMixWithOthers (bool mixWithOthers) {
117
117
throw UnimplementedError ('setMixWithOthers() has not been implemented.' );
118
118
}
119
119
120
- /// Sets additional options on web
120
+ /// Sets additional options on web.
121
121
Future <void > setWebOptions (int playerId, VideoPlayerWebOptions options) {
122
122
throw UnimplementedError ('setWebOptions() has not been implemented.' );
123
123
}
You can’t perform that action at this time.
0 commit comments