getAppBarActionsIconTheme static method
IconThemeData?
getAppBarActionsIconTheme(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static IconThemeData? getAppBarActionsIconTheme(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.appBarActionsIconTheme ??
style?.appBarActionsIconTheme ??
getStyleByType(
UpConfig.of(context).theme,
colorType,
).appBarActionsIconTheme;
}