ExpandableTableCell constructor

ExpandableTableCell({
  1. CellBuilder? builder,
  2. Widget? child,
})

ExpandableTableCell class constructor. This class defines a single table cell. You can define a child Widget or pass a builder function to build your widget in the cell. Using the builder it is possible to access the details of the cell itself.

Implementation

ExpandableTableCell({
  this.builder,
  this.child,
}) : assert((builder != null || child != null) &&
          (builder == null || child == null));