callDiscardReasonDeclined property
The call was ended before the conversation started. It was declined by the other party
Implementation
CallDiscardReasonDeclined? get callDiscardReasonDeclined {
if (this is CallDiscardReasonDeclined) {
return this as CallDiscardReasonDeclined;
}
return null;
}