cancel method

void cancel(
  1. Entity entity,
  2. Type type
)

Cancels a removal deadline.

Implementation

void cancel(Entity entity, Type type) {
  final row = _rowOf(entity, type);
  if (row >= 0) _removeRow(row);
}