removePermanentQuery method

void removePermanentQuery(
  1. String name
)

Remove a permanentrly query parameter

Implementation

void removePermanentQuery(String name) {
  _permaQuery!.remove(name);
  if (_permaQuery!.length == 0) _permaQuery = null;
}