clearReactions method

void clearReactions(
  1. String lookupValue
)

Clear reactions for a given lookupValue.

Implementation

void clearReactions(String lookupValue) {
  paginatedParams[lookupValue] = null;
  _getController(lookupValue)!.value = [];
}