setCenterTitle method
Implementation
MAppBar setCenterTitle(bool centerTitle) {
final scaffold = this;
final newScaffold = MAppBar(
modifier: scaffold.modifier,
backgroundColor: scaffold.backgroundColor,
centerTitle: centerTitle,
);
return newScaffold;
}