ReadableColumn<T> constructor
const
ReadableColumn<T> (
- String label, {
- required Widget cell(
- BuildContext context,
- T value
- double? width,
- int flex = 1,
- ReadableAlign align = ReadableAlign.start,
- bool sortable = false,
- Comparable? sortKey(
- T value
- ReadableColumnType type = ReadableColumnType.text,
- String copyText(
- T value
Implementation
const ReadableColumn(
this.label, {
required this.cell,
this.width,
this.flex = 1,
this.align = ReadableAlign.start,
this.sortable = false,
this.sortKey,
this.type = ReadableColumnType.text,
this.copyText,
});