FieldModel constructor

const FieldModel({
  1. List<String>? fieldPath,
  2. required dynamic fieldType,
  3. bool? nullable,
  4. FieldModel? child,
})

Implementation

const FieldModel({
  this.fieldPath,
  required this.fieldType,
  this.nullable,
  this.child,
});