GooglePrivacyDlpV2CreateConnectionRequest.fromJson constructor

GooglePrivacyDlpV2CreateConnectionRequest.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2CreateConnectionRequest.fromJson(core.Map json_)
    : this(
        connection: json_.containsKey('connection')
            ? GooglePrivacyDlpV2Connection.fromJson(
                json_['connection'] as core.Map<core.String, core.dynamic>)
            : null,
      );