HeaderDetails constructor

HeaderDetails({
  1. String? name,
  2. String? label,
  3. dynamic value,
  4. bool? amount,
  5. bool? allowCopy,
  6. String? valueClass,
})

Implementation

HeaderDetails({
  this.name,
  this.label,
  this.value,
  this.amount,
  this.allowCopy,
  this.valueClass,
});