Footer constructor
const
Footer({
- Component? logo,
- String? description,
- required List<
FooterLinkGroup> linkGroups, - List<
Component> ? socialLinks, - String? copyright,
- List<
FooterLink> ? bottomLinks, - bool showNewsletter = false,
- String newsletterPlaceholder = 'Enter your email',
- String newsletterButtonText = 'Subscribe',
- void onNewsletterSubmit()?,
- 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,
});