ManagedAttributeDescription.transient constructor Null safety

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

Implementation

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