NyFormPicker constructor
NyFormPicker({})
Creates a NyFormPicker widget
Implementation
NyFormPicker({
super.key,
required String name,
required List<String> options,
String? selectedValue,
BottomModalSheetStyle? bottomModalSheetStyle,
this.onChanged,
}) : field = Field(name, value: selectedValue)
..cast = FormCast.picker(
options: options, bottomModalSheetStyle: bottomModalSheetStyle);