Cell constructor

const Cell(
  1. String text, {
  2. Key? key,
  3. bool border = true,
  4. Widget? right,
  5. VoidCallback? onTap,
})

Implementation

const Cell(
  this.text, {
  Key? key,
  this.border = true,
  this.right,
  this.onTap,
}) : super(key: key);