Cell constructor

Cell({
  1. Object value = '',
  2. Map? attr,
  3. bool addRepaintBoundaries = false,
})

Implementation

Cell(
    {this.value = '',
    Map? attr,
    // super.keepAlive = false,
    this.addRepaintBoundaries = false})
    : attr = attr ?? {};