clearQueryConstraint static method

void clearQueryConstraint(
  1. FdcDataSet dataSet, {
  2. required Object owner,
})

Removes the query constraint associated with owner.

This changes the registered constraint set but does not itself refresh the dataset query; call refreshQueryConstraints when a refresh is required.

Implementation

static void clearQueryConstraint(
  FdcDataSet dataSet, {
  required Object owner,
}) {
  FdcDataSetInternal.clearQueryConstraint(dataSet, owner: owner);
}