getAppBarToggleIconPadding static method
double
getAppBarToggleIconPadding(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static double getAppBarToggleIconPadding(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.appBarToggleIconPadding ??
style?.appBarToggleIconPadding ??
getStyleByType(UpConfig.of(context).theme, colorType)
.appBarToggleIconPadding ??
UpConstants.kDefaultStyleFixedDrawerToggleIconPadding;
}