FooterColumnProps constructor

const FooterColumnProps({
  1. required String title,
  2. required List<FooterLink> links,
  3. String? titleColor,
  4. String? linkColor,
  5. String? linkGap,
})

Implementation

const FooterColumnProps({
  required this.title,
  required this.links,
  this.titleColor,
  this.linkColor,
  this.linkGap,
});