SectionHeaderProps constructor

const SectionHeaderProps({
  1. String? label,
  2. required String heading,
  3. String? description,
  4. SectionHeaderAlign align = SectionHeaderAlign.center,
  5. String? descriptionMaxWidth,
  6. String? marginBottom,
  7. String? labelColor,
  8. String? headingColor,
  9. String? descriptionColor,
})

Implementation

const SectionHeaderProps({
  this.label,
  required this.heading,
  this.description,
  this.align = SectionHeaderAlign.center,
  this.descriptionMaxWidth,
  this.marginBottom,
  this.labelColor,
  this.headingColor,
  this.descriptionColor,
});