ClueDropDownButton<T, E> constructor

const ClueDropDownButton<T, E>({
  1. Key? key,
  2. bool enabled = true,
  3. T? selectedKey,
  4. List<T> blockKeyList = const [],
  5. required Map<T, E> itemMap,
  6. double? width,
  7. Color? borderColor,
  8. required void onChanged(
    1. T key
    ),
  9. String? noneText,
  10. SvgPicture? arrowImage,
})

Implementation

const ClueDropDownButton(
    {super.key,
    this.enabled = true,
    this.selectedKey,
    this.blockKeyList = const [],
    required this.itemMap,
    this.width,
    this.borderColor,
    required this.onChanged,
    this.noneText,
    this.arrowImage});