ReconfigureTrustRequest.fromJson constructor

ReconfigureTrustRequest.fromJson(
  1. Map json_
)

Implementation

ReconfigureTrustRequest.fromJson(core.Map json_)
    : this(
        targetDnsIpAddresses: (json_['targetDnsIpAddresses'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
        targetDomainName: json_['targetDomainName'] as core.String?,
      );