WePickerView constructor
WePickerView({
- dynamic itemCount = 5,
- double itemHeight = 42,
- OnChange? onChange,
- required List<
List< options,WePickerItem> >
Implementation
WePickerView(
{itemCount = 5,
this.itemHeight = 42,
this.onChange,
required this.options})
: assert(itemCount % 2 == 1),
this.itemCount = itemCount;