ModulaDataColumn constructor

const ModulaDataColumn({
  1. required String label,
  2. required String field,
  3. bool numeric = false,
  4. bool sortable = true,
  5. dynamic builder(
    1. dynamic value,
    2. Map<String, dynamic> row
    )?,
})

Implementation

const ModulaDataColumn({
  required this.label,
  required this.field,
  this.numeric = false,
  this.sortable = true,
  this.builder,
});