TableColumn<M extends Object> constructor

const TableColumn<M extends Object>({
  1. required Widget label,
  2. bool numeric = false,
  3. double width = 350,
  4. bool fixed = false,
  5. EdgeInsets contentPadding = const EdgeInsets.symmetric(horizontal: kXSSize),
  6. Decoration? decoration,
  7. String nullValuePlaceholder = '-',
})

Implementation

const TableColumn({
  required this.label,
  this.numeric = false,
  this.width = 350,
  this.fixed = false,
  this.contentPadding = const EdgeInsets.symmetric(horizontal: kXSSize),
  this.decoration,
  this.nullValuePlaceholder = '-',
});