Page constructor

Page({
  1. required Widget child,
  2. Widget? floatingActionButton,
  3. FloatingActionButtonLocation? floatingActionButtonLocation,
  4. bool safeArea = false,
  5. Color? backgroundColor,
  6. Widget? footer,
})

Implementation

Page(
    {required this.child,
    this.floatingActionButton,
    this.floatingActionButtonLocation,
    this.safeArea = false,
    this.backgroundColor,
    this.footer});