Footer constructor

const Footer({
  1. dynamic key,
  2. required List footerPagesConfigs,
  3. required dynamic userSettings,
  4. required dynamic footerConfig,
})

Implementation

const Footer({
  super.key,
  required this.footerPagesConfigs,
  required this.userSettings,
  required this.footerConfig,
});