FrontEndMigrationDto constructor

FrontEndMigrationDto({
  1. required String id,
  2. String? rev,
  3. int? deletionDate,
  4. String? name,
  5. int? startDate,
  6. int? endDate,
  7. FrontEndMigrationDtoStatusEnum? status,
  8. String? logs,
  9. String? userId,
  10. String? startKey,
  11. String? startKeyDocId,
  12. int? processCount,
  13. Set<PropertyStubDto> properties = const {},
})

Returns a new FrontEndMigrationDto instance.

Implementation

FrontEndMigrationDto({
  required this.id,
  this.rev,
  this.deletionDate,
  this.name,
  this.startDate,
  this.endDate,
  this.status,
  this.logs,
  this.userId,
  this.startKey,
  this.startKeyDocId,
  this.processCount,
  this.properties = const {},
});