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