Footer constructor

const Footer({
  1. String? description,
  2. required List<FooterLinkGroup> linkGroups,
  3. List<Component>? socialLinks,
  4. String? copyright,
  5. List<FooterLink>? bottomLinks,
  6. bool showNewsletter = false,
  7. String newsletterPlaceholder = 'Enter your email',
  8. String newsletterButtonText = 'Subscribe',
  9. void onNewsletterSubmit(
    1. String
    )?,
  10. Key? key,
})

Implementation

const Footer({
  this.logo,
  this.description,
  required this.linkGroups,
  this.socialLinks,
  this.copyright,
  this.bottomLinks,
  this.showNewsletter = false,
  this.newsletterPlaceholder = 'Enter your email',
  this.newsletterButtonText = 'Subscribe',
  this.onNewsletterSubmit,
  super.key,
});