StaticPage constructor

const StaticPage({
  1. required Widget child,
  2. EdgeInsets? padding,
  3. AppBar? appBar,
  4. FloatingActionButton? floatingActionButton,
  5. Key? key,
})

Implementation

const StaticPage({
  required this.child,
  this.padding,
  this.appBar,
  this.floatingActionButton,
  super.key,
});