GoogleCloudDataplexV1DataQualityRuleResultDebugQueryResultSet.fromJson constructor
GoogleCloudDataplexV1DataQualityRuleResultDebugQueryResultSet.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1DataQualityRuleResultDebugQueryResultSet.fromJson(
core.Map json_,
) : this(
results: (json_['results'] as core.List?)
?.map(
(value) =>
GoogleCloudDataplexV1DataQualityRuleResultDebugQueryResult.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);