openAppMarket static method

Future<FlutterError?> openAppMarket({
  1. AppMarket market = AppMarket.official,
})

Only for android, should check platform before use.

Implementation

static Future<FlutterError?> openAppMarket({ AppMarket market = AppMarket.official }) async {
  return methodChannel.invokeMethod("openAppMarket", { "market": market.name });
}