OudsTopBarActionConfig.menu constructor
Creates a configuration for a standard 'menu' (hamburger) navigation action.
Implementation
factory OudsTopBarActionConfig.menu({
VoidCallback? onActionPressed,
String? contentDescription,
}) {
return OudsTopBarActionConfig._(
type: OudsTopBarActionType.menu,
onActionPressed: onActionPressed,
contentDescription: contentDescription,
);
}