Field.c3 constructor

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

Implementation

factory Field.c3({
  List<String>? fieldPath,
  dynamic? fieldType,
  bool? nullable,
  Field? child,
}) {
  assert(fieldType != null);

  return Field(
    fieldPath: fieldPath,
    fieldType: fieldType,
    nullable: nullable,
    child: child,
  );
}