drop method

void drop(
  1. T asset
)

Implementation

void drop(T asset) {
  _toPrune.add(asset);
  _pruneTimer?.cancel();
  if (isPruningEnabled) {
    _pruneTimer = Timer(pruneAfter, _prune);
  }
}