BPTable constructor Null safety

const BPTable(
  1. double widthCM,
  2. List<BPRow> rows,
  3. bool drawHorizontalLines,
  4. bool drawVerticalLines,
  5. BackPanel panel,
  6. {Key? key}
)

Implementation

const BPTable(this.widthCM, this.rows, this.drawHorizontalLines,
    this.drawVerticalLines, this.panel,
    {Key? key})
    : super(key: key);