Field constructor

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

Implementation

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