EMContactManager constructor

EMContactManager()

Implementation

EMContactManager() {
  _channel.setMethodCallHandler((MethodCall call) async {
    Map? argMap = call.arguments;
    if (call.method == ChatMethodKeys.onContactChanged) {
      return _onContactChanged(argMap!);
    }
    return null;
  });
}