Footer constructor

const Footer({
  1. required EdgeInsetsGeometry? footerPadding,
  2. required Color? footerBackground,
  3. required Widget? footer,
  4. Key? key,
  5. bool darkMode = false,
})

Creates a Footer widget.

The footerPadding parameter specifies the padding around the footer. The footerBackground parameter specifies the background color of the footer. The footer parameter specifies the content of the footer. The darkMode parameter specifies whether to use dark mode or not.

Implementation

const Footer({
  required this.footerPadding,
  required this.footerBackground,
  required this.footer,
  super.key,
  this.darkMode = false,
});