dropdown_item.dart 271 B

12345678910111213141516
  1. import 'package:flutter/material.dart';
  2. class DropdownItem<T> {
  3. final T value;
  4. final String label;
  5. final IconData? icon;
  6. final Color? iconColor;
  7. const DropdownItem({
  8. required this.value,
  9. required this.label,
  10. this.icon,
  11. this.iconColor,
  12. });
  13. }