getCallLogList method
      
void
getCallLogList(
    
- CallLogFilterParams params,
- String authToken,
- dynamic onSuccess(- String onSuccess
 
- dynamic onError(- CometChatCallsException excep
 
Get Call Logs List
Implementation
void getCallLogList(
    CallLogFilterParams params,
    String authToken,
    Function(String onSuccess) onSuccess,
    Function(CometChatCallsException excep) onError) async {
  final response = await createGET(getApiUrl(_urlCallLogs),
      getDefaultHeaders(authToken, null), params.toMap());
  handleResponse(response, onSuccess, onError);
}