OudsToolbarTop constructor
- Key? key,
- OudsTopBarSize? style = OudsTopBarSize.small,
- String? title,
- bool translucent = false,
- List<
OudsTopBarActionConfig> ? leadingActions, - List<
OudsTopBarActionConfig> ? trailingActions,
Implementation
const OudsToolbarTop({super.key,
this.style = OudsTopBarSize.small,
this.title,
this.translucent = false,
this.leadingActions,
this.trailingActions,
}) : assert (
style != OudsTopBarSize.medium,
'OudsToolbarTop does not support the medium style. Use small or large.'
);