setDaysBeforeShowingPopupAgain method

Future<void> setDaysBeforeShowingPopupAgain(
  1. int dayCount
)

Set number of days before showing ratings pop-up again once user cancels/ignores the pop-up. Applicable exclusively to the Android platform.

Implementation

Future<void> setDaysBeforeShowingPopupAgain(int dayCount) async {
  if (Platform.isAndroid) {
    AppticsFlutterPlatform.instance.setDaysBeforeShowingPopupAgain(dayCount);
  } else {
    developer.log('method not available in iOS.', name: 'Apptics');
  }
}