scaffold method

Scaffold scaffold({
  1. PreferredSizeWidget? appBar,
  2. Widget? floatingActionButton,
})

Implementation

Scaffold scaffold({
  PreferredSizeWidget? appBar,
  Widget? floatingActionButton,
}){
  return Scaffold(
    appBar: appBar,
    floatingActionButton: floatingActionButton,
    body: this,
  );
}