PutVoiceConnectorEmergencyCallingConfigurationResponse.fromJson constructor

PutVoiceConnectorEmergencyCallingConfigurationResponse.fromJson(
  1. 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,
  );
}