Footer constructor

const Footer({
  1. Key? key,
  2. Color? backgroundColor,
  3. Alignment? alignment,
  4. EdgeInsetsGeometry? padding,
  5. required Widget child,
})

Implementation

const Footer(
    {Key? key, this.backgroundColor,
      this.alignment,
      this.padding,
      required this.child}) : super(key: key);