CreateCell<T extends ValueCell> typedef
CreateCell<T extends ValueCell> =
T Function()
Cell creation function.
The function is called with no arguments and should return a ValueCell
.
Implementation
typedef CreateCell<T extends ValueCell> = T Function();