Field.c3 constructor
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,
);
}