SettingItem constructor
const
SettingItem({
- required String id,
- required String label,
- String? searchText,
- required SettingType type,
- required dynamic value,
- List<
String> ? options, - ValueChanged? onChange,
Implementation
const SettingItem({
required this.id,
required this.label,
this.searchText,
required this.type,
required this.value,
this.options,
this.onChange,
});