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