Field.from constructor
Field.from(
- Field source
Derives an instance Field from source
.
Implementation
factory Field.from(Field source) {
return Field(
fieldName: source.fieldName,
fieldType: source.fieldType,
nullable: source.nullable,
);
}