removeFilterVariable method

void removeFilterVariable(
  1. String name
)

Removes a previously added Sync filter variable value.

See also putFilterVariable and removeAllFilterVariables.

Implementation

void removeFilterVariable(String name) {
  withNativeString(name,
      (nameCStr) => checkObx(C.sync_filter_variables_remove(_ptr, nameCStr)));
}