Table constructor

Table({
  1. required String $id,
  2. required String $createdAt,
  3. required String $updatedAt,
  4. required List<String> $permissions,
  5. required String databaseId,
  6. required String name,
  7. required bool enabled,
  8. required bool rowSecurity,
  9. required List columns,
  10. required List<ColumnIndex> indexes,
})

Implementation

Table({
  required this.$id,
  required this.$createdAt,
  required this.$updatedAt,
  required this.$permissions,
  required this.databaseId,
  required this.name,
  required this.enabled,
  required this.rowSecurity,
  required this.columns,
  required this.indexes,
});