FooterLayout constructor

const FooterLayout({
  1. Key? key,
  2. Widget? footer,
  3. Widget? child,
})

Creates a layout with its child widget above a footer widget.

Implementation

const FooterLayout({
  Key? key,
  this.footer,
  this.child,
}) : super(key: key);