buildMaterialWidget method
Implementation
@override
SliverAppBar buildMaterialWidget(BuildContext context) {
return SliverAppBar(
leading: _buildLeading(
context: context,
leading: this.leading,
leadingOnPressed: leadingOnPressed,
tintColor: tintColor,
),
title: title,
actions: actions == null ? [] : actions,
elevation: elevation,
backgroundColor: backgroundColor,
pinned: pinned,
expandedHeight: expandedHeight,
flexibleSpace: flexibleSpace,
systemOverlayStyle: systemOverlayStyle,
);
}