VelocityTable constructor

const VelocityTable({
  1. Key? key,
  2. VelocityTableHeader? header,
  3. List<VelocityTableRow>? rows,
})

Implementation

const VelocityTable({
  Key? key,
  this.header,
  this.rows,
}) : super(key: key);