BackupArchive constructor

BackupArchive({
  1. required String $id,
  2. required String $createdAt,
  3. required String $updatedAt,
  4. required String policyId,
  5. required int size,
  6. required String status,
  7. required String startedAt,
  8. required String migrationId,
  9. required List<String> services,
  10. required List<String> resources,
  11. String? resourceId,
  12. String? resourceType,
})

Implementation

BackupArchive({
  required this.$id,
  required this.$createdAt,
  required this.$updatedAt,
  required this.policyId,
  required this.size,
  required this.status,
  required this.startedAt,
  required this.migrationId,
  required this.services,
  required this.resources,
  this.resourceId,
  this.resourceType,
});