TrackerField constructor

const TrackerField(
  1. String title, {
  2. int columnWidth = 3,
  3. String emptyFill = '',
  4. Justify justify = Justify.right,
  5. bool mapOnly = false,
})

Represents one field or column in the Tracker titled title.

Implementation

const TrackerField(
  this.title, {
  this.columnWidth = 3,
  this.emptyFill = '',
  this.justify = Justify.right,
  this.mapOnly = false,
}) : assert(columnWidth > 0, '`columnWidth` must be greater than 0.');