hideSettingsPanel method

Future<void> hideSettingsPanel()

Hides the settings panel.

Implementation

Future<void> hideSettingsPanel() async {
  try {
    await CometChatCallsPluginPlatform.instance.nativeHideSettingsPanel();
  } catch (e) {
    throw CometChatCallsException(
      ErrorCodeConstants.errorHideSettingsPanel,
      'Failed to hide settings panel',
      e.toString(),
    );
  }
}