setDescriptionWhileRecording method

Future<void> setDescriptionWhileRecording(
  1. CameraDescription description
)
inherited

Sets the active camera while recording.

On Android, you must start the recording with startVideoCapturing with enablePersistentRecording set to true to avoid cancelling any active recording.

Implementation

Future<void> setDescriptionWhileRecording(CameraDescription description) {
  throw UnimplementedError(
    'setDescriptionWhileRecording() is not implemented.',
  );
}