removeFilterVariable method
Removes a previously added Sync filter variable value.
Note: If the client is already logged in, this change is not applied until applyFilterVariables is called. See putFilterVariable for details.
See also putFilterVariable and removeAllFilterVariables.
Implementation
void removeFilterVariable(String name) {
withNativeString(name,
(nameCStr) => checkObx(C.sync_filter_variables_remove(_ptr, nameCStr)));
}