getCallDetails method

void getCallDetails(
  1. String sessionId,
  2. String userAuthToken,
  3. dynamic onSuccess(
    1. List<CallLog> callLog
    ),
  4. dynamic onError(
    1. CometChatCallsException error
    ),
)

Implementation

void getCallDetails(
    String sessionId,
    String userAuthToken,
    Function(List<CallLog> callLog) onSuccess,
    Function(CometChatCallsException error) onError) {
  throw UnimplementedError('getCallDetails has not been implemented.');
}