VolvoxColumn<T> constructor

const VolvoxColumn<T>({
  1. required String field,
  2. required String header,
  3. required String value(
    1. T row
    ),
  4. bool editable = false,
})

Implementation

const VolvoxColumn({
  required this.field,
  required this.header,
  required this.value,
  this.editable = false,
});