Replication constructor
Replication(})
Implementation
Replication(
this.id,
{
String? rev,
int? deletionDate,
String? name,
String? context,
List<DatabaseSynchronization>? databaseSynchronizations
}) : rev = rev ?? null,
deletionDate = deletionDate ?? null,
name = name ?? null,
context = context ?? null,
databaseSynchronizations = databaseSynchronizations ?? [];