GroupAppData
data class GroupAppData @JvmOverloads constructor(val appInfo: AppInfo, var group: String = "", var subLabel: String = "", val appDataList: List<AppData> = emptyList()) : AppData, Groupable(source)
Represents app data that can be grouped.
This class extends AppData and implements Groupable, allowing it to be categorized and potentially contain child AppData items.
Constructors
Properties
Link copied to clipboard
A list of AppData objects that are considered children or members of this group. Defaults to an empty list.