setDescriptionWhileRecording method
Sets the active camera while recording.
Implementation
@override
Future<void> setDescriptionWhileRecording(CameraDescription description) async {
await _channel.invokeMethod<double>(
'setDescriptionWhileRecording',
<String, dynamic>{
'cameraName': description.name,
},
);
}