PutVoiceConnectorProxyResponse.fromJson constructor

PutVoiceConnectorProxyResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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