LzDropItem constructor

const LzDropItem({
  1. Key? key,
  2. required Widget child,
  3. List<DropOption> options = const [],
  4. DropStyle? style,
  5. void onSelect(
    1. DropValue value
    )?,
  6. Widget builder(
    1. Widget child
    )?,
})

Create widget

Implementation

const LzDropItem(
    {super.key,
    required this.child,
    this.options = const [],
    this.style,
    this.onSelect,
    this.builder});