stopVirtualBackground function

Future<void> stopVirtualBackground({
  1. bool reset = false,
})

Implementation

Future<void> stopVirtualBackground({bool reset = false}) async {
  if (reset) {
    disableVirtualBackground();
  } else {
    enableVirtualBackground(null, null);
  }
}