refuseRemoteInvitation method

Future<void> refuseRemoteInvitation(
  1. RemoteInvitation remoteInvitation
)

Allows the callee to decline a call invitation.

Implementation

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