removeParams property

List<String>? get removeParams

The list of query keys to be removed.

Implementation

List<String>? get removeParams =>
    _wrapped.removeParams?.toDart.cast<String>().map((e) => e).toList();
set removeParams (List<String>? v)

Implementation

set removeParams(List<String>? v) {
  _wrapped.removeParams = v?.toJSArray((e) => e);
}