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,
      );