Checks if app review is needed.
Future<bool> shouldAskForAppReview() async { if (isIOS || isAndroid) { await _rateMyApp.init(); return _rateMyApp.shouldOpenDialog; } return false; }