add method

void add(
  1. V item
)

Implementation

void add(V item) {
  update((items) {
    items.add(item);
  });
}