FieldModel constructor
const
FieldModel({
- List<
String> ? fieldPath, - required dynamic fieldType,
- bool? nullable,
- FieldModel? child,
Implementation
const FieldModel({
this.fieldPath,
required this.fieldType,
this.nullable,
this.child,
});