PutVoiceConnectorProxyResponse.fromJson constructor
Implementation
factory PutVoiceConnectorProxyResponse.fromJson(Map<String, dynamic> json) {
return PutVoiceConnectorProxyResponse(
proxy: json['Proxy'] != null
? Proxy.fromJson(json['Proxy'] as Map<String, dynamic>)
: null,
);
}