appBarTheme method
Implementation
@override
ThemeData appBarTheme(BuildContext context) {
ThemeData theme = super.appBarTheme(context);
return theme.copyWith(
appBarTheme: theme.appBarTheme.copyWith(
backgroundColor: theme.colorScheme.surface,
),
);
}