This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree 3 files changed +4
-3
lines changed
camera_avfoundation/ios/Classes 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
51
51
- (void )close ;
52
52
- (void )startVideoRecordingWithResult : (FLTThreadSafeFlutterResult *)result ;
53
53
- (void )startVideoRecordingWithResult : (FLTThreadSafeFlutterResult *)result
54
- messengerForStreaming : (nullable NSObject <FlutterBinaryMessenger> *)messenger ;
54
+ messengerForStreaming : (nullable NSObject <FlutterBinaryMessenger> *)messenger ;
55
55
- (void )stopVideoRecordingWithResult : (FLTThreadSafeFlutterResult *)result ;
56
56
- (void )pauseVideoRecordingWithResult : (FLTThreadSafeFlutterResult *)result ;
57
57
- (void )resumeVideoRecordingWithResult : (FLTThreadSafeFlutterResult *)result ;
Original file line number Diff line number Diff line change @@ -627,7 +627,7 @@ - (void)startVideoRecordingWithResult:(FLTThreadSafeFlutterResult *)result {
627
627
}
628
628
629
629
- (void )startVideoRecordingWithResult : (FLTThreadSafeFlutterResult *)result
630
- messengerForStreaming : (nullable NSObject <FlutterBinaryMessenger> *)messenger {
630
+ messengerForStreaming : (nullable NSObject <FlutterBinaryMessenger> *)messenger {
631
631
if (!_isRecording) {
632
632
if (messenger != nil ) {
633
633
[self startImageStreamWithMessenger: messenger];
Original file line number Diff line number Diff line change @@ -219,7 +219,8 @@ class CameraWindows extends CameraPlatform {
219
219
Function (CameraImageData image)? streamCallback,
220
220
CameraImageStreamOptions ? streamOptions}) async {
221
221
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' );
223
224
}
224
225
225
226
await pluginChannel.invokeMethod <void >(
You can’t perform that action at this time.
0 commit comments