BatchApprovePublisherConnectionsResponse.fromJson constructor

BatchApprovePublisherConnectionsResponse.fromJson(
  1. Map json_
)

Implementation

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