sentRatingStats method
Implementation
@override
Future<void> sentRatingStats(int criteriaId, PopupAction popupAction) async {
try {
await methodChannel.invokeMethod("sentRatingStats",
{'criteriaId': criteriaId, 'popupAction': popupAction.value});
} on PlatformException catch (e, s) {
print(s);
}
}