FrontEndMigration constructor

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

Implementation

FrontEndMigration(
	this.id,
	{
		String? rev,
		int? deletionDate,
		String? name,
		int? startDate,
		int? endDate,
		FrontEndMigrationStatus? status,
		String? logs,
		String? userId,
		String? startKey,
		String? startKeyDocId,
		int? processCount,
		Set<DecryptedPropertyStub>? properties
	}) : rev = rev ?? null,
	deletionDate = deletionDate ?? null,
	name = name ?? null,
	startDate = startDate ?? null,
	endDate = endDate ?? null,
	status = status ?? null,
	logs = logs ?? null,
	userId = userId ?? null,
	startKey = startKey ?? null,
	startKeyDocId = startKeyDocId ?? null,
	processCount = processCount ?? null,
	properties = properties ?? {};