FieldModel constructor

const FieldModel({
  1. List<String>? fieldPath,
  2. required dynamic fieldType,
  3. bool? nullable,
  4. List<Map<String, dynamic>>? children,
  5. bool? primaryKey,
  6. bool? foreignKey,
  7. Object? fallback,
  8. String? description,
})

Constructs a new instance of FieldModel from optional and required parameters.

Implementation

const FieldModel({
  this.fieldPath,
  required this.fieldType,
  this.nullable,
  this.children,
  this.primaryKey,
  this.foreignKey,
  this.fallback,
  this.description,
});