Field constructor
Field({
- String? fieldStyle,
- required String name,
- String? dataType,
- String? label,
- String? placeholder,
- String? formatter,
- String? fieldType,
- dynamic defaultValue,
- ConditionalOn? disabledOn,
- bool? disabled,
- List<
String> ? dependentOn, - Validation? validation,
- List<
AutoFill> ? autoFill, - List<
Option> ? options, - Source? source,
- ConditionalOn? conditionalOn,
Implementation
Field({
this.fieldStyle,
required this.name,
this.dataType,
this.label,
this.placeholder,
this.formatter,
this.fieldType,
this.hidden,
this.defaultValue,
this.disabledOn,
this.disabled,
this.dependentOn,
this.validation,
this.autoFill,
this.options,
this.source,
this.conditionalOn,
});