urlParameters top-level property

Map<String, String> get urlParameters

Implementation

Map<String, String> get urlParameters {
  try {
    final href = web.window.location.href;
    if (href.isEmpty) return {};
    return Uri.parse(href).queryParameters;
  } catch (_) {
    return {};
  }
}