This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
camera_avfoundation/ios/Classes Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ NS_ASSUME_NONNULL_BEGIN
5151- (void )close ;
5252- (void )startVideoRecordingWithResult : (FLTThreadSafeFlutterResult *)result ;
5353- (void )startVideoRecordingWithResult : (FLTThreadSafeFlutterResult *)result
54- messengerForStreaming : (nullable NSObject <FlutterBinaryMessenger> *)messenger ;
54+ messengerForStreaming : (nullable NSObject <FlutterBinaryMessenger> *)messenger ;
5555- (void )stopVideoRecordingWithResult : (FLTThreadSafeFlutterResult *)result ;
5656- (void )pauseVideoRecordingWithResult : (FLTThreadSafeFlutterResult *)result ;
5757- (void )resumeVideoRecordingWithResult : (FLTThreadSafeFlutterResult *)result ;
Original file line number Diff line number Diff line change @@ -627,7 +627,7 @@ - (void)startVideoRecordingWithResult:(FLTThreadSafeFlutterResult *)result {
627627}
628628
629629- (void )startVideoRecordingWithResult : (FLTThreadSafeFlutterResult *)result
630- messengerForStreaming : (nullable NSObject <FlutterBinaryMessenger> *)messenger {
630+ messengerForStreaming : (nullable NSObject <FlutterBinaryMessenger> *)messenger {
631631 if (!_isRecording) {
632632 if (messenger != nil ) {
633633 [self startImageStreamWithMessenger: messenger];
Original file line number Diff line number Diff line change @@ -219,7 +219,8 @@ class CameraWindows extends CameraPlatform {
219219 Function (CameraImageData image)? streamCallback,
220220 CameraImageStreamOptions ? streamOptions}) async {
221221 if (streamCallback != null || streamOptions != null ) {
222- throw UnimplementedError ('Streaming is not currently supported on Windows' );
222+ throw UnimplementedError (
223+ 'Streaming is not currently supported on Windows' );
223224 }
224225
225226 await pluginChannel.invokeMethod <void >(
You can’t perform that action at this time.
0 commit comments