update method

void update(
  1. void fn(
    1. Iterable<E>? value
    )
)

Implementation

void update(void Function(Iterable<E>? value) fn) {
  fn(value);
  refresh();
}