headerFor method

String headerFor(
  1. FdcExportColumn column
)

Returns the human-readable tabular header for column.

Implementation

String headerFor(FdcExportColumn column) {
  return column.label ?? column.key ?? column.fieldName;
}