isSupportedNativeRequestReview method

Future<bool> isSupportedNativeRequestReview()

Whether review requests are supported (ie. iOS review dialog, since iOS 10.3)

Implementation

Future<bool> isSupportedNativeRequestReview() async {
  if (!Platform.isIOS) {
    return false;
  }
  return _invokeIsSupportedRequestReview();
}