table method Null safety

  1. @protected
Widget table(
  1. double widthCM,
  2. List<BPRow> rows,
  3. {bool drawLines = true,
  4. bool? drawVerticalLines}
)

Implementation

@protected
Widget table(double widthCM, List<BPRow> rows,
        {bool drawLines = true, bool? drawVerticalLines}) =>
    BPTable(widthCM, rows, drawLines, drawVerticalLines ?? drawLines, this);