FdcExportColumn constructor

const FdcExportColumn({
  1. required String fieldName,
  2. String? key,
  3. String? label,
  4. FdcExportValueFormatter? valueFormatter,
  5. FdcExportTextAlignment textAlignment = FdcExportTextAlignment.left,
})

Creates a FdcExportColumn.

Implementation

const FdcExportColumn({
  required this.fieldName,
  this.key,
  this.label,
  this.valueFormatter,
  this.textAlignment = FdcExportTextAlignment.left,
});