gotoAppStore static method

Future gotoAppStore(
  1. String urlString
)

for iOS: go to app store by the url

Implementation

static Future<dynamic> gotoAppStore(String urlString) async {
  Map<String, String> params = {'urlString': urlString};
  final dynamic result = await _channel.invokeMethod('gotoAppStore', params);
  return result;
}