AttributeRelationship constructor

AttributeRelationship({
  1. required String key,
  2. required String type,
  3. required String status,
  4. required String error,
  5. required bool xrequired,
  6. bool? array,
  7. required String $createdAt,
  8. required String $updatedAt,
  9. required String relatedCollection,
  10. required String relationType,
  11. required bool twoWay,
  12. required String twoWayKey,
  13. required String onDelete,
  14. required String side,
})

Implementation

AttributeRelationship({
  required this.key,
  required this.type,
  required this.status,
  required this.error,
  required this.xrequired,
  this.array,
  required this.$createdAt,
  required this.$updatedAt,
  required this.relatedCollection,
  required this.relationType,
  required this.twoWay,
  required this.twoWayKey,
  required this.onDelete,
  required this.side,
});