Skip to content

Commit

Permalink
Update dartdocs for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
FirentisTFW committed Jan 20, 2025
1 parent 04973c2 commit af483a1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ abstract class VideoPlayerPlatform extends PlatformInterface {
throw UnimplementedError('getPosition() has not been implemented.');
}

/// Returns a widget displaying the video with a given playerID.
/// Returns a widget displaying the video with a given playerId.
@Deprecated('Use buildViewWithOptions() instead.')
Widget buildView(int playerId) {
throw UnimplementedError('buildView() has not been implemented.');
Expand All @@ -112,12 +112,12 @@ abstract class VideoPlayerPlatform extends PlatformInterface {
return buildView(options.playerId);
}

/// Sets the audio mode to mix with other sources
/// Sets the audio mode to mix with other sources.
Future<void> setMixWithOthers(bool mixWithOthers) {
throw UnimplementedError('setMixWithOthers() has not been implemented.');
}

/// Sets additional options on web
/// Sets additional options on web.
Future<void> setWebOptions(int playerId, VideoPlayerWebOptions options) {
throw UnimplementedError('setWebOptions() has not been implemented.');
}
Expand Down

0 comments on commit af483a1

Please sign in to comment.