clear method

void clear(
  1. String categoryId
)

Implementation

void clear(String categoryId) {
  if (_entriesByCategoryId.remove(categoryId) != null) {
    revision.value++;
  }
}