TableRelationshipReference constructor

TableRelationshipReference(
  1. String relationshipTable,
  2. String sourceTable,
  3. String sourceField,
  4. Type sourceFieldType,
  5. String sourceRelationshipField,
  6. String targetTable,
  7. String targetField,
  8. Type targetFieldType,
  9. String targetRelationshipField, {
  10. String? relationshipField,
})

Implementation

TableRelationshipReference(
    this.relationshipTable,
    this.sourceTable,
    this.sourceField,
    this.sourceFieldType,
    this.sourceRelationshipField,
    this.targetTable,
    this.targetField,
    this.targetFieldType,
    this.targetRelationshipField,
    {this.relationshipField});