reloadWith method

Iterable<T> reloadWith(
  1. JsonTable rows
)

Reload the table with the provided rows. Only rows with valid Ids will be added.

Implementation

Iterable<T> reloadWith(JsonTable rows) {
  _table.clear();
  return addAll(rows);
}