nativeCall property
Call?
get
nativeCall
Implementation
twilio_js.Call? get nativeCall {
return _jsCall;
}
set
nativeCall
(Call? value)
Implementation
set nativeCall(twilio_js.Call? value) {
_jsCall = value;
if (value != null) {
activeCall = activeCallFromNativeJsCall(value);
_attachCallEventListeners(_jsCall!);
}
}