build method
Build the widget.
Implementation
@override
Widget build(final BuildContext context) => Scaffold(
appBar: AppBar(
leading: leading,
actions: actions,
title: Text(title),
bottom: bottom,
),
body: body,
bottomNavigationBar: bottomNavigationBar,
floatingActionButton: floatingActionButton,
);