RecupScaffold constructor

const RecupScaffold({
  1. Key? key,
  2. required Widget body,
  3. PreferredSizeWidget? appBar,
  4. Widget? floatingActionButton,
  5. FloatingActionButtonLocation? floatingActionButtonLocation,
  6. Widget? bottomNavigationBar,
})

Implementation

const RecupScaffold(
    {Key? key,
    required this.body,
    this.appBar,
    this.floatingActionButton,
    this.floatingActionButtonLocation,
    this.bottomNavigationBar})
    : super(key: key);