getElevId function

String? getElevId(
  1. BeautifulSoup soup
)

Implementation

String? getElevId(BeautifulSoup soup) {
  String? path = soup.find("meta",
      attrs: {'name': 'msapplication-starturl'})!.getAttrValue('content');
  return queriesFromSoup(path ?? "")['elevid'];
}