better_networking & apidash_core: fixed package exports

This commit is contained in:
Manas Hejmadi
2025-06-18 01:24:51 +05:30
parent c2c83f1f7b
commit bb837f4f55
11 changed files with 17 additions and 34 deletions

View File

@@ -23,8 +23,10 @@ String stripUrlParams(String url) {
}
(Uri?, String?) getValidRequestUri(
String? url, List<NameValueModel>? requestParams,
{SupportedUriSchemes defaultUriScheme = kDefaultUriScheme}) {
String? url,
List<NameValueModel>? requestParams, {
SupportedUriSchemes defaultUriScheme = kDefaultUriScheme,
}) {
url = url?.trim();
if (url == null || url == "") {
return (null, "URL is missing!");