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