FlenxBlogLayout constructor

const FlenxBlogLayout({
  1. required Component child,
  2. required SiteBrand brand,
  3. List<MenuLink> links = const [],
  4. List<LoginOption> loginOptions = const [],
  5. Component? footer,
  6. SiteConfig config = const SiteConfig(),
  7. Key? key,
})

Implementation

const FlenxBlogLayout({
  required this.child,
  required this.brand,
  this.links = const [],
  this.loginOptions = const [],
  this.footer,
  this.config = const SiteConfig(),
  super.key,
});