removeUriQuery method

void removeUriQuery(
  1. String query
)
inherited

Remove a URI query

Implementation

void removeUriQuery(final String query) {
  _options.removeWhere(
    (final element) => element is UriQueryOption && element.value == query,
  );
}