UXPFieldDropDown constructor

const UXPFieldDropDown({
  1. Key? key,
  2. required String? value,
  3. required Function onChange,
  4. required String placeholder,
  5. String? label,
  6. String? description,
  7. bool? required,
  8. List<LMDataSourceConfig>? datasources,
  9. Map<String, dynamic>? contextData,
  10. required Map<String, dynamic> uiProps,
})

Implementation

const UXPFieldDropDown(
    {Key? key,
    required this.value,
    required this.onChange,
    required this.placeholder,
    this.label,
    this.description,
    this.required,
    this.datasources,
    this.contextData,
    required this.uiProps})
    : super(key: key);