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