fromJson static method
Inherited by: CallProblemDistortedSpeech CallProblemDistortedVideo CallProblemDropped CallProblemEcho CallProblemInterruptions CallProblemNoise CallProblemPixelatedVideo CallProblemSilentLocal CallProblemSilentRemote
Implementation
static CallProblemDistortedSpeech? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const CallProblemDistortedSpeech();
}