UEditorDropdown<T> constructor

const UEditorDropdown<T>({
  1. required String label,
  2. required List<UEditorMenuEntry<T>> items,
  3. required ValueChanged<T> onSelected,
  4. Key? key,
  5. String? tooltip,
  6. double? width,
})

Implementation

const UEditorDropdown({required this.label, required this.items, required this.onSelected, super.key, this.tooltip, this.width});