GoogleCloudDataplexV1Contacts.fromJson constructor

GoogleCloudDataplexV1Contacts.fromJson(
  1. Map json_
)

Implementation

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