File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/camera/camera_platform_interface/lib/src/platform_interface Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -81,15 +81,15 @@ abstract class CameraPlatform extends PlatformInterface {
81
81
/// Starts a video recording
82
82
///
83
83
/// If no [file] parameter is provided, the recording will be saved to a new file in a temporary location.
84
- ///
84
+ ///
85
85
/// The file is written on the flight as the video is being recorded.
86
86
/// If a file already exists at the path for the provided file instance, an error will be thrown.
87
87
/// The file can be read as soon as [stopVideoRecording] returns it.
88
88
Future <XFile > startVideoRecording (int cameraId, { XFile file }) {
89
89
throw UnimplementedError ('startVideoRecording() is not implemented.' );
90
90
}
91
91
92
- /// Stops the video recording and returns the file where it was saved
92
+ /// Stops the video recording and returns the file where it was saved.
93
93
Future <XFile > stopVideoRecording (int cameraId) {
94
94
throw UnimplementedError ('stopVideoRecording() is not implemented.' );
95
95
}
You can’t perform that action at this time.
0 commit comments