TDropdown constructor

const TDropdown({
  1. Key? key,
  2. TDropdownTheme? theme,
  3. required List<TDropdownItem> items,
  4. required Widget child,
})

Implementation

const TDropdown({
  super.key,
  this.theme,
  required this.items,
  required this.child,
});