GoogleCloudDataplexV1DataDocumentationResultSchema.fromJson constructor

GoogleCloudDataplexV1DataDocumentationResultSchema.fromJson(
  1. Map json_
)

Implementation

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