Index constructor

Index({
  1. required String $id,
  2. required String $createdAt,
  3. required String $updatedAt,
  4. required String key,
  5. required String type,
  6. required String status,
  7. required String error,
  8. required List<String> attributes,
  9. required List<int> lengths,
  10. List<String>? orders,
})

Implementation

Index({
  required this.$id,
  required this.$createdAt,
  required this.$updatedAt,
  required this.key,
  required this.type,
  required this.status,
  required this.error,
  required this.attributes,
  required this.lengths,
  this.orders,
});