static jumpAppStore(String? id, bool? beta) async { if (id == null) { return; } final params = {'id': id, 'beta': beta.toString()}; return await _channel.invokeMethod('jumpAppStore', params); }