removeCallback static method

dynamic removeCallback(
  1. TencentCloudChatCallbacks? callbacks
)

Implementation

static removeCallback(TencentCloudChatCallbacks? callbacks) {
  if(callbacks != null){
    TencentCloudChat.instance.callbacks.removeCallback(callbacks);
  }
}