Stream_BackfillAllStrategy constructor

Stream_BackfillAllStrategy({
  1. OracleRdbms? oracleExcludedObjects,
  2. MysqlRdbms? mysqlExcludedObjects,
  3. PostgresqlRdbms? postgresqlExcludedObjects,
})

Implementation

factory Stream_BackfillAllStrategy({
  OracleRdbms? oracleExcludedObjects,
  MysqlRdbms? mysqlExcludedObjects,
  PostgresqlRdbms? postgresqlExcludedObjects,
}) {
  final $result = create();
  if (oracleExcludedObjects != null) {
    $result.oracleExcludedObjects = oracleExcludedObjects;
  }
  if (mysqlExcludedObjects != null) {
    $result.mysqlExcludedObjects = mysqlExcludedObjects;
  }
  if (postgresqlExcludedObjects != null) {
    $result.postgresqlExcludedObjects = postgresqlExcludedObjects;
  }
  return $result;
}