appBar method
Implementation
PreferredSize? appBar(
String title, {
bool isThin = true,
bool? centerTitle,
List<Widget>? actions,
Widget? leading,
Widget? bottom,
}) {
return appBarChild(
Text(title),
isThin: isThin,
centerTitle: centerTitle,
actions: actions,
leading: leading,
bottom: bottom,
);
}