GoldengateIcebergConnectionProperties.fromJson constructor

GoldengateIcebergConnectionProperties.fromJson(
  1. Map json_
)

Implementation

GoldengateIcebergConnectionProperties.fromJson(core.Map json_)
  : this(
      catalog: json_.containsKey('catalog')
          ? IcebergCatalog.fromJson(
              json_['catalog'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      storage: json_.containsKey('storage')
          ? IcebergStorage.fromJson(
              json_['storage'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      technologyType: json_['technologyType'] as core.String?,
    );