putRawCells method
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));
}
});
}