openAppStoreInApp static method

Future<FlutterError?> openAppStoreInApp(
  1. String appId
)

Only for ios, should check platform before use.

Implementation

static Future<FlutterError?> openAppStoreInApp(String appId) async {
  return methodChannel.invokeMethod("openAppStoreInApp", { "appId": appId });
}