CellState<T extends StatefulCell> constructor
CellState<T extends StatefulCell> ({
- required T cell,
- required dynamic key,
Create a state for cell
identified by key
.
Implementation
CellState({
required this.cell,
required this.key
});