MAppBar constructor
Implementation
MAppBar({
required this.modifier,
this.title,
final Color? backgroundColor,
final bool? centerTitle,
}) : super(
backgroundColor: backgroundColor ?? modifier?.backgroundColor,
title: title,
centerTitle: centerTitle ?? modifier?.centerTitle,
);