获取Uri中的queryParameters 如果该字符串不是Url 将抛出 FormatException
Map<String, String> get queryParameters { try { return toUri?.queryParameters ?? {}; } catch (_) { return {}; } }