putRawCells method

  1. @protected
  2. @visibleForTesting
void putRawCells(
  1. Iterable rawCells
)

Parse all rawCells and save in the state, notifying listeners.

Implementation

@protected
@visibleForTesting
void putRawCells(Iterable<dynamic> rawCells) {
  updateState((modifier) {
    for (final initialCell in rawCells) {
      modifier.putCell(cellParser(initialCell));
    }
  });
}