remove method
Removes key from the current query string.
Implementation
void remove(String key, {bool push = false, Object? state}) {
final next = Map<String, dynamic>.from(_uri.queryParameters)..remove(key);
_write(next, push: push, state: state);
}