updateAll method

void updateAll(
  1. T update(
    1. int,
    2. T
    )
)

Updates all records in the store

Implementation

void updateAll(T Function(int, T) update) {
  _store.updateAll(update);

  // Find a better way to force emit event without element
  // super.update(element: null);
}