sentStats method

Future<void> sentStats(
  1. int criteriaId,
  2. PopupAction popupAction
)

Update in-app ratings engagement stats to Apptics. Used in-case of building your own UI for in-app ratings. @param criteriaId Long value provided in customUiCallback. @param popupAction PopupAction enum to represent engagement.

Implementation

Future<void> sentStats(int criteriaId, PopupAction popupAction) async {
  await AppticsFlutterPlatform.instance
      .sentRatingStats(criteriaId, popupAction);
}