toRecord property

TFieldRecord get toRecord
inherited

Converts this to a TFieldRecord.

Implementation

TFieldRecord get toRecord => (
  fieldPath: (this as FieldModel).fieldPath,
  fieldType: (this as FieldModel).fieldType,
  nullable: (this as FieldModel).nullable,
  children: (this as FieldModel).children,
  primaryKey: (this as FieldModel).primaryKey,
  foreignKey: (this as FieldModel).foreignKey,
  fallback: (this as FieldModel).fallback,
  description: (this as FieldModel).description,
);