openVirtualBackgroundSettingsPanel method
Opens the virtual background settings panel.
Implementation
Future<void> openVirtualBackgroundSettingsPanel() async {
try {
await CometChatCallsPluginPlatform.instance.nativeOpenVirtualBackgroundSettingsPanel();
} catch (e) {
throw CometChatCallsException(
ErrorCodeConstants.errorHideSettingsPanel,
'Failed to open virtual background settings panel',
e.toString(),
);
}
}