BackfillAllStrategy.fromJson constructor

BackfillAllStrategy.fromJson(
  1. Map json_
)

Implementation

BackfillAllStrategy.fromJson(core.Map json_)
    : this(
        mysqlExcludedObjects: json_.containsKey('mysqlExcludedObjects')
            ? MysqlRdbms.fromJson(json_['mysqlExcludedObjects']
                as core.Map<core.String, core.dynamic>)
            : null,
        oracleExcludedObjects: json_.containsKey('oracleExcludedObjects')
            ? OracleRdbms.fromJson(json_['oracleExcludedObjects']
                as core.Map<core.String, core.dynamic>)
            : null,
      );