callProblemNoise property

CallProblemNoise? callProblemNoise

The user heard background noise

Implementation

CallProblemNoise? get callProblemNoise {
  if (this is CallProblemNoise) {
    return this as CallProblemNoise;
  }
  return null;
}