Index constructor

Index({
  1. required String key,
  2. required String type,
  3. required String status,
  4. required String error,
  5. required List attributes,
  6. List? orders,
})

Implementation

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