GoogleCloudDataplexV1DataProfileResultProfile.fromJson constructor

GoogleCloudDataplexV1DataProfileResultProfile.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1DataProfileResultProfile.fromJson(core.Map json_)
    : this(
        fields: json_.containsKey('fields')
            ? (json_['fields'] as core.List)
                .map((value) =>
                    GoogleCloudDataplexV1DataProfileResultProfileField
                        .fromJson(
                            value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );