GetVoiceConnectorEmergencyCallingConfigurationResponse.fromJson constructor
GetVoiceConnectorEmergencyCallingConfigurationResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory GetVoiceConnectorEmergencyCallingConfigurationResponse.fromJson(
Map<String, dynamic> json) {
return GetVoiceConnectorEmergencyCallingConfigurationResponse(
emergencyCallingConfiguration:
json['EmergencyCallingConfiguration'] != null
? EmergencyCallingConfiguration.fromJson(
json['EmergencyCallingConfiguration'] as Map<String, dynamic>)
: null,
);
}