BaseScaffold constructor

BaseScaffold({
  1. BaseAppBar? appBar,
  2. Widget? body,
  3. Color? backgroundColor,
  4. Widget? bottomNavigationBar,
  5. Widget? floatingActionButton,
  6. FloatingActionButtonLocation? floatingActionButtonLocation,
  7. FloatingActionButtonAnimator? floatingActionButtonAnimator,
})

Implementation

BaseScaffold({
  this.appBar,
  this.body,
  this.backgroundColor,
  this.bottomNavigationBar,
  this.floatingActionButton,
  this.floatingActionButtonLocation,
  this.floatingActionButtonAnimator,
});