callStateError property
The call has ended with an error
Implementation
CallStateError? get callStateError {
if (this is CallStateError) {
return this as CallStateError;
}
return null;
}
The call has ended with an error
CallStateError? get callStateError {
if (this is CallStateError) {
return this as CallStateError;
}
return null;
}