ChatContactManager constructor
Implementation
ChatContactManager() {
platform_interface.Client.instance.contactManager.updateNativeHandler((MethodCall call) async {
ChatLog.d("${call.method}: arguments: ${call.arguments}");
Map? argMap = call.arguments;
if (call.method == ChatMethodKeys.onContactChanged) {
return _onContactChanged(argMap!);
}
});
}