unlockCaptureOrientation method

  1. @override
Future<void> unlockCaptureOrientation(
  1. int cameraId
)

Unlocks the capture orientation.

Implementation

@override
Future<void> unlockCaptureOrientation(int cameraId) async {
  await _channel.invokeMethod<String>(
    'unlockCaptureOrientation',
    <String, dynamic>{'cameraId': cameraId},
  );
}