import { LaunchReview } from '@awesome-cordova-plugins/launch-review/ngx';
constructor(private launchReview: LaunchReview) { }
...
this.launchReview.launch()
.then(() => console.log('Successfully launched store app'));
if(this.launchReview.isRatingSupported()){
this.launchReview.rating()
.then(() => console.log('Successfully launched rating dialog'));
}