Control constructor
Control({
- required String type,
- required String name,
- required String label,
- dynamic defaultValue,
- List<
ControlOption> options = const [],
Implementation
Control({
required this.type,
required this.name,
required this.label,
this.defaultValue,
this.options = const [],
});