@@ -112,10 +112,10 @@ RNCallKeep.displayIncomingCall(uuid, handle);
112112### startCall
113113
114114When you make an outgoing call, tell the device that a call is occurring.
115- _ This feature is available only on iOs ._
115+ _ This feature is available only on iOS ._
116116
117117``` js
118- RNCallKeep .startCall (uuid, number );
118+ RNCallKeep .startCall (uuid, handle, handleType, hasVideo, contactIdentifier );
119119```
120120
121121- _ uuid_ : string
@@ -156,7 +156,7 @@ RNCallKeep.setCurrentCallActive();
156156### setMutedCall
157157
158158Switch the mic on/off.
159- _ This feature is available only on iOs ._
159+ _ This feature is available only on iOS ._
160160
161161``` js
162162RNCallKeep .setMutedCall (uuid, true );
@@ -169,7 +169,7 @@ RNCallKeep.setMutedCall(uuid, true);
169169### checkIfBusy
170170
171171Checks if there are any active calls on the device and returns a promise with a boolean value (` true ` if there're active calls, ` false ` otherwise).
172- _ This feature is available only on iOs ._
172+ _ This feature is available only on iOS ._
173173
174174``` js
175175RNCallKeep .checkIfBusy ();
@@ -178,7 +178,7 @@ RNCallKeep.checkIfBusy();
178178### checkSpeaker
179179
180180Checks if the device speaker is on and returns a promise with a boolean value (` true ` if speaker is on, ` false ` otherwise).
181- _ This feature is available only on iOs ._
181+ _ This feature is available only on iOS ._
182182
183183``` js
184184RNCallKeep .checkSpeaker ();
0 commit comments