acceptRemoteInvitation method

Future<void> acceptRemoteInvitation(
  1. RemoteInvitation remoteInvitation
)

Allows the callee to accept a call invitation.

Implementation

Future<void> acceptRemoteInvitation(RemoteInvitation remoteInvitation) {
  return _callNative("acceptRemoteInvitation",
      {'remoteInvitation': remoteInvitation.toJson()});
}