Skip to content

Commit 118447c

Browse files
committed
Update dartdocs for consistency
1 parent 04973c2 commit 118447c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/video_player/video_player_platform_interface/lib/video_player_platform_interface.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)