use of com.fanap.podchat.requestobject.RequestRemoveContact in project pod-chat-android-sdk by FanapSoft.
the class ChatPresenter method removeContact.
@Override
public void removeContact(long id) {
// chat.removeContact(id);
RequestRemoveContact requestRemoveContact = new RequestRemoveContact.Builder(id).build();
chat.removeContact(requestRemoveContact);
}
Aggregations