removeContactListener method

void removeContactListener(
  1. EMContactEventListener contactListener
)

移除好友监听器 contactListener

Implementation

void removeContactListener(EMContactEventListener contactListener) {
  if (_contactChangeEventListeners.contains(contactListener)) {
    _contactChangeEventListeners.remove(contactListener);
  }
}