I'm using cordova AppCenter Shared plugin inside Ionic4 app and calling function, I was able to get ID in console, but cannot assign it to public variable, any ideas?:
Stack: Angular 6
public deviceId: string = '';
this._window.AppCenter.getInstallId(function(success, error) {
console.log(success);
this.deviceId = success;
});