callStateError property

CallStateError? callStateError

The call has ended with an error

Implementation

CallStateError? get callStateError {
  if (this is CallStateError) {
    return this as CallStateError;
  }
  return null;
}