VitComboBoxTheme constructor

const VitComboBoxTheme({
  1. Key? key,
  2. required Widget child,
  3. required VitComboBoxStyle data,
})

Creates a instance of the class that holds the logic to insert VitComboBoxThemeData into the widget tree as well as getting it using a BuildContext.

Implementation

const VitComboBoxTheme({
  super.key,
  required this.child,
  required this.data,
});