addOrReplaceParams property
List<QueryKeyValue> ?
get
addOrReplaceParams
The list of query key-value pairs to be added or replaced.
Implementation
List<QueryKeyValue>? get addOrReplaceParams =>
_wrapped.addOrReplaceParams?.toDart
.cast<$js.QueryKeyValue>()
.map((e) => QueryKeyValue.fromJS(e))
.toList();
set
addOrReplaceParams
(List<QueryKeyValue> ? v)
Implementation
set addOrReplaceParams(List<QueryKeyValue>? v) {
_wrapped.addOrReplaceParams = v?.toJSArray((e) => e.toJS);
}