value property
The cell's value
Implementation
@override
T get value {
final state = this.state;
if (state == null) {
throw UninitializedCellError();
}
return state.value;
}
The cell's value
@override
T get value {
final state = this.state;
if (state == null) {
throw UninitializedCellError();
}
return state.value;
}