resumePreview method

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

Resume the paused preview for the selected camera.

Implementation

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