ColumnDescriptor constructor

ColumnDescriptor({
  1. required String attributeName,
  2. String? format,
  3. required String label,
  4. String? type,
  5. int? width,
})

Implementation

ColumnDescriptor({
  required this.attributeName,
  this.format,
  required this.label,
  this.type,
  this.width,
});