EditorItem constructor
const
EditorItem({
- required String fieldName,
- required EEditorType type,
- int step = 1,
- String? title,
- String? validator(
- Object? value
- bool isRequired = false,
- UploadImageInfo? uploadImageInfo,
- Object? defaultValue,
- String? hint,
- String? invalidMessage,
- double? min,
- double? max,
- String? invalidMin,
- String? invalidMax,
Implementation
const EditorItem({
required this.fieldName,
required this.type,
this.step = 1,
this.title,
this.validator,
this.isRequired = false,
this.uploadImageInfo,
this.defaultValue,
this.hint,
this.invalidMessage,
this.min,
this.max,
this.invalidMin,
this.invalidMax,
});