callProblemNoise property
The user heard background noise
Implementation
CallProblemNoise? get callProblemNoise {
if (this is CallProblemNoise) {
return this as CallProblemNoise;
}
return null;
}
The user heard background noise
CallProblemNoise? get callProblemNoise {
if (this is CallProblemNoise) {
return this as CallProblemNoise;
}
return null;
}