GetVoiceConnectorEmergencyCallingConfigurationResponse.fromJson constructor

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