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