CellState<T extends StatefulCell> constructor

CellState<T extends StatefulCell>({
  1. required T cell,
  2. required dynamic key,
})

Create a state for cell identified by key.

Implementation

CellState({
  required this.cell,
  required this.key
});