call_problem_distorted_speech property
CallProblemDistortedSpeech
get
call_problem_distorted_speech
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
CallProblemDistortedSpeech get call_problem_distorted_speech {
try {
if (rawData["call_problem_distorted_speech"] is Map == false) {
return CallProblemDistortedSpeech({});
}
return CallProblemDistortedSpeech(rawData["call_problem_distorted_speech"] as Map);
} catch (e) {
return CallProblemDistortedSpeech({});
}
}
set
call_problem_distorted_speech
(CallProblemDistortedSpeech value)
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
set call_problem_distorted_speech(CallProblemDistortedSpeech value) {
rawData["call_problem_distorted_speech"] = value.toJson();
}