Index constructor

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

Implementation

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