ButtonListModel

data class ButtonListModel(val buttonStyle: ButtonStyle, val buttonModels: List<ButtonModel>)

This data class encapsulates the style and the individual models for a list of buttons for a SuggestAppBarView or its subclass.

Constructors

Link copied to clipboard
constructor(buttonStyle: ButtonStyle, buttonModels: List<ButtonModel>)

Properties

Link copied to clipboard

A list of ButtonModel objects, each representing an individual button.

Link copied to clipboard

The ButtonStyle to be applied to all buttons in the list.