StatefulCell<T> constructor

StatefulCell<T>({
  1. dynamic key,
})

Create a cell identified by key.

Implementation

StatefulCell({key}) {
  this.key = key ?? AutoKey.autoKey(this);
}