getConversationUpdateSettings static method

void getConversationUpdateSettings()

Implementation

static void getConversationUpdateSettings() async {
  await CometChat.getConversationUpdateSettings(
    onSuccess: (settings) {
      conversationUpdateSettings = settings;
    },
    onError: (exception) {
      if (kDebugMode) {
        debugPrint(
            "Cannot get conversation update settings ${exception.message}");
      }
    },
  );
}