Field constructor

Field(
  1. FieldElement fieldElement,
  2. String name,
  3. String columnName,
  4. bool isNullable,
  5. String sqlType,
  6. TypeConverter? typeConverter,
)

Implementation

Field(
  this.fieldElement,
  this.name,
  this.columnName,
  this.isNullable,
  this.sqlType,
  this.typeConverter,
);