removeQuery method
Implementation
Uri removeQuery() {
if (hasQuery) {
return Uri.parse(url.split("?")[0]);
} else {
return this;
}
}
Uri removeQuery() {
if (hasQuery) {
return Uri.parse(url.split("?")[0]);
} else {
return this;
}
}