ManagedAttributeDescription.transient constructor

ManagedAttributeDescription.transient(
  1. ManagedEntity entity,
  2. String name,
  3. ManagedType type,
  4. Type declaredType,
  5. Serialize? transientStatus,
)

Implementation

ManagedAttributeDescription.transient(ManagedEntity entity, String name,
    ManagedType type, Type declaredType, this.transientStatus)
    : isPrimaryKey = false,
      defaultValue = null,
      super(entity, name, type, declaredType,
          unique: false,
          indexed: false,
          nullable: false,
          includedInDefaultResultSet: false,
          autoincrement: false,
          validators: []);