toAppStore static method

dynamic toAppStore(
  1. String id
)

跳转到ios app store

Implementation

static toAppStore(String id) async {
  var map = {'id': id};
  return await _channel.invokeMethod('toAppStore', map);
}