CellDivider constructor

const CellDivider({
  1. Key? key,
  2. ValueCell<double?>? height,
  3. ValueCell<double?>? thickness,
  4. ValueCell<double?>? indent,
  5. ValueCell<double?>? endIndent,
  6. ValueCell<Color?>? color,
})

Implementation

const CellDivider({
  super.key,
  this.height,
  this.thickness,
  this.indent,
  this.endIndent,
  this.color,
});