shouldAskForAppReview method

Future<bool> shouldAskForAppReview()

Checks if app review is needed.

Implementation

Future<bool> shouldAskForAppReview() async {
  if (isIOS || isAndroid) {
    await _rateMyApp.init();

    return _rateMyApp.shouldOpenDialog;
  }

  return false;
}