fallback static method
A default value style of ZeroNavigationDrawerStyle
Implementation
static ZeroNavigationDrawerStyle fallback({
Color? backgroundColor,
TextStyle? headerTitleStyle,
TextStyle? sectionTitleStyle,
}) =>
ZeroNavigationDrawerStyle(
backgroundColor: backgroundColor ?? Colors.white,
headerTitleStyle: headerTitleStyle,
sectionTitleStyle: sectionTitleStyle,
separatorDrawer: true,
width: 300,
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.horizontal(right: Radius.circular(16)),
),
);