jumpAppStore static method

dynamic jumpAppStore(
  1. String? id,
  2. bool? beta
)

Implementation

static jumpAppStore(String? id, bool? beta) async {
  if (id == null) {
    return;
  }

  final params = {'id': id, 'beta': beta.toString()};
  return await _channel.invokeMethod('jumpAppStore', params);
}