sentRatingStats method

  1. @override
Future<void> sentRatingStats(
  1. int criteriaId,
  2. PopupAction popupAction
)
override

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);
  }
}