gotoAppStore static method

Future<String?> gotoAppStore(
  1. String urlString
)

for iOS: go to app store by the url

Implementation

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