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. List<String>? orders,
  7. required String $createdAt,
  8. required String $updatedAt,
})

Implementation

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